在SQL Server中,select top (1) * from stuInfo where stNo not in(select top (2) stNo from stuInfo)
以上语句的功能是( )
A查询学员信息表的第一条记录
B查询学员信息表的第二条记录
C查询学员信息表的第三条记录
D语法有问题,不能查询到记录
相关试题
-
在SQL Server中,select top (1) * from stuInfo where stNo not in(select top (2) stNo from stuInfo) 以上语句的
-
在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 writtemE
-
在SQL Server中,对以下语句描述不正确的是( ) create view view_stuInfo as select stuName,stuNo,stuAddress
-
SELECT * FROM comments WHERE newsId IN(1,2);该语句含义是什么?