在SQL Server中,分析以下代码,正确的说法是( )select * from stuInfo where stuNo not in (select stuNo from stuMarks where writtemExam !=100)
A此语句查询笔试成绩不等于100分的同学所有信息
B此语句查询笔试成绩等于100分的学生所有信息
C此语句查询所有没有参加考试的学生信息
D此语句查询所有参加考试的学生信息
相关试题
-
在SQL Server中,分析以下代码,正确的说法是( )select * from stuInfo where stuNo not in (select stuNo from stuMarks
-
分析以下代码,说法正确的是( ) Select * from stuInfo where stuNo not in (select stuNo from stuMarks where writt
-
在SQL Server中,select top (1) * from stuInfo where stNo not in(select top (2) stNo from stuInfo) 以上语句的
-
在SQL Server中,对以下语句描述不正确的是( ) create view view_stuInfo as select stuName,stuNo,stuAddress
-
在SQL Server中,给定创建视图的代码如下,则下划线处应填写的正确关键字为( ) CREATE VIEW ABCD ____ SELECT * FROM SALES WHERE QTY > 9