瑞声科技|艺典中国软件测试笔试题

瑞声科技|艺典中国软件测试笔试题

    艺典中国软件测试笔试题
    姓名:_____________日期:________________工作年限:_______________
    1. 请用一条sql语句删除表格中重复的数据 , 保留重复数据的第一条记录(表名:student)
    Id
    Name
    Grade
    1
    Tom
    80
    2
    Tom
    80
    3
    Lucy
    89
    4
    Lily
    95
    5
    Lucy
    89
    6
    Lily
    95
    7
    Sara
    100
    8
    Sara
    100
    ……
    ……
    ……
    10000
    Iris
    88
    delete from student a where (a.Namea.Grade) in (select NameGrade from student group by NameGrade  having count(*) > 1) and rowid not in (select min(rowid) from student group by NameGrade having count (*)>1);
    1. Linux命令(以下text为文本 , 文件名称)
    1. 查看文本text内容命令;
    2. 编辑文本text内容并保存命令;
    3. 修改文件text的读写权限命令;
    4. 修改文件text的用户和用户组属性;
    5. 是否在Linux系统下部署过测试环境及安装过的软件?
    1. 根据以下界面设计测试用例(写出思路):

    1. 【瑞声科技|艺典中国软件测试笔试题】请写出你熟悉的自动化测试工具 。