相关题目
单选题
MySQL中,关于下面的查询语句描述正确的是()。
select sno, name from student where not exists
(select * from sc where sc.sno=student.sno)
单选题
MySQL中,select sno, grade from sc where cno=(子查询),此处的子查询应该返回()。
单选题
MySQL中,下面的语句中,子查询是()。select sno, name, gender, birthdate, class from student
where birthdate=
(select min(birthdate) from student);
单选题
MySQL中,关于内连接、左外连接、右外连接和全连接结果数量描述正确的是()。
单选题
MySQL中,在内连接以及外连接中,描述连接条件使用的关键字是()。
单选题
MySQL中,关于全外连接的描述错误的是()。
单选题
MySQL中,关于右外连接的描述错误的是()。
单选题
MySQL中,关于左外连接的描述正确的是()。
单选题
MySQL中,进行内连接的时候,关于连接条件描述正确的是()。
单选题
MySQL中,假定有课程关系表COURSE(CNO, CNAME, TEACHER),学生选课关系表SC(SNO, CNO, GRADE),那么查询选修了“数据库原理”的学生学号,正确的SQL语句是()。
