在线名词解释大全
专业、全面、易懂的全领域名词百科
首页
>
MySQL数据库设计
>
详细
下面选项中,查询student表中id值不在2和5之间的学生的SQL语句是()
题型:单选题
选项
A.
SELECT * FROM student where id!=2,3,4,5;
B.
SELECT * FROM student where id not between 5 and 2;
C.
SELECT * FROM student where id not between 2 and 5;
D.
SELECT * FROM student where id not in 2,3,4,5;
正确答案: