现有学生关系表S(sno,sname,ssex,sage),查找年龄大于20岁的男生和女生人数信息,对应的SQL语句是________。
A. selectssex,count(*)fromSwheresage>20;
B. selectssex,count(*)fromSgroupbyssexhavingsage>20;
C. selectssex,count(*)fromSwheresage>20groupbyssex;
D. selectssex,count(*)fromSwheresage>20groupbyssex having sage>20;
查看答案
现有学生关系表S(sno,sname,ssex,sage),查找年龄为20或21或22岁的男生信息的SQL语句是________。
A. select*fromSwheressex='男'and(sage=20orsage=21orsage=22);
B. select*fromSwheressex='男'andsage>=20andsage<=22;
C. select*fromSwheressex='男'and(sagebetween20and22);
D. select*fromSwheressex='男'andsagein(20,21,22);
现有学生关系表S(sno,sname,ssex,sage),查找所有姓名不是'张衡'的学生信息,并将结果按学号升序排列,下列选项中SQL语句正确的是________。
A. select*fromSwheresname!='张衡'orderbysno;
B. select*fromSwheresname<>'张衡'orderbysno;
C. select*fromSwheresname<>'张衡'orderbysnoASC;
D. select*fromSwheresname!='张衡'orderbysnoDESC;
现有学生关系表S(sno,sname,ssex,sage),查找所有姓名为'张衡'的学生人数信息,下列选项中SQL语句正确的是________。
A. select count(*) fromSwheresname='张衡';
B. select count(sno) fromSwheresname='张衡';
C. select count(distinct sname) fromSwheresname='张衡';
D. select count(sname) fromSwheresname='张衡';
有的人身处逆境而百折不挠,有些人在顺境中却长吁短叹,有的人笑对人生,有的人看破红尘,这些都是()的表现。
A. 人生目的
B. 人生态度
C. 人生理想
D. 人生信念