现有学生关系表S(sno,sname,ssex,sage),下列选项中与关系代数表达式σsage<18(S)等价的SQL语句是________。
A. selectsagefromSwheresage<18;
B. selectfromSwheresage<18;
C. select*fromSwheresage<18;
D. select*fromSwheresagelessthan18;
查看答案
现有学生关系表S(sno,sname,ssex,sage),下列选项中与关系代数表达式Πsno,sname(σssex=’男’(S))等价的SQL语句是________。
A. select*fromSwheressex='男';
B. selectsno,snamefromSwheressex='男';
C. selectsno,snamefromSwhere*;
D. select*fromSwhere'男';
现有学生关系表S(sno,sname,ssex,sage),下列选项中与关系代数表达式Πsno,sname(S)等价的SQL语句是________。
A. select*fromSwheresno,sname;
B. selectfromSwheresno,sname;
C. selectsno,snamefromSwhere*;
D. selectsno,snamefromS;
下列选项中,哪一项不是用来构造查询条件时所经常使用的谓词?________。
A. between......and
B. not in
C. like
D. greater
现有学生关系表S(sno,sname,ssex,sage),查找年龄在18岁到20岁之间的女生学号和姓名的SQL语句是________。
A. selectsno,snamefromSwheressex='女'andsagenotbetween20and18;
B. select*fromSwheressex<>'男'andsage>=18andsage<=20;
C. selectsno,snamefromSwheressex='女'and18<=sage<=20;
D. selectsno,snamefromSwheressex='女'andsagebetween18and20;