下面选项中,用于查询student表中id值在1,2,3范围内的记录的SQL语句是A.SELECT * FROM student where id=1,2,3;B.SEL
百度试题 题目下面选项中,用于查询student表中id值在1,2,3范围内的记录的SQL语句是 相关知识点: 试题来源: 解析 SELECT * FROM student where id in (1,2,3); 反馈 收藏
下面选项中,用于查询student表中id值在1,2,3范围内的记录的SQL语句是A.SELECT * FROM student where id=1,2,3;B.SELECT * FROM student where (id=1,id=2,id=3);C.SELECT * FROM student where id in (1,2,3);D.SELECT * FROM student where id in 1,2,3;的答案是什么.用刷
更多“下面选项中,用于查询student表中id值在1, 2, 3范围内的记录的SQL语是()。”相关的问题 第1题 对下面的查询语句描述正确的是()。SelectStudentID,Name,(selectcount(*)fromStudentExamwhereStudentExam、StudentID=Student、StudentID)asExamsTakenfromStudentorderbyExamsTakendesc A.从Student表中查找Student...