elete from table1 where 范围
更新:update table1 set field1=value1 where 范围
查找:select * from table1 where field1 like '%value1%' ---like的语法很精妙,查资料!
排序:select * from table1 order by field1,field2 [desc]
总数:select count as totalcount from table1
求和:select sum(field1) as sumvalue from table1
平均:select avg(field1) as avgvalue from table1
最大:select max(field1) as maxvalue from table1
最小:select min(field1) as minvalue from table1
52、关于自动化测试局限性的描述,以下错误的描述有__B____
A.自动化测试不能取代手工测试 B.自动测试比手工测试发现的缺陷少
C.自动测试不能提高测试覆盖率 D.自动化测试对测试设计依赖性极大
53、测试ATM取款功能,已知取款数只能输入正整数,每次取款数要求是100的倍数且不能大于500,下面哪个是正确的无效等价类___C___
A.(0,100)、(100,200)、(200,300)、(300,400)、(400,500)、(500, +∞);
B.(500, +∞);
C.(500, +∞)、任意大于0小于500的非100倍数的整数;
D.(-∞,100)、(100,200)、(200,300)、(300,400)、(400,500)、(500, +∞);