题目内容

现有学生关系表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;

现有学生关系表S(sno,sname,ssex,sage),查找年龄为空值的女生信息的SQL语句是________。

A. select*fromSwheressex='女'andsage=Null;
B. select*fromSwheressexis'女'andsageisNull;
C. select*fromSwheressex='女'andsageisNull;
D. select*fromSwheressexis'女'andsage=Null;

答案查题题库