注意:此页面搜索的是所有试题
                题目内容
                (国家开放大学数据库应用技术)
            
            
                现要利用Student表查询年龄最小的学生姓名和年龄。下列实现此功能的查询语句中,正确的是(  )。
单选题 (3 分) 3分
A.
SELECT Sname, MIN(Sage) FROM Student
B.
SELECT Sname, Sage FROM Student WHERE Sage = MIN(Sage)
C.
SELECT TOP 1 Sname, Sage FROM Student
D.
SELECT TOP 1 Sname, Sage FROM Student ORDER BY Sage
                    
                    
                    
                
                
                
            
        单选题 (3 分) 3分
A.
SELECT Sname, MIN(Sage) FROM Student
B.
SELECT Sname, Sage FROM Student WHERE Sage = MIN(Sage)
C.
SELECT TOP 1 Sname, Sage FROM Student
D.
SELECT TOP 1 Sname, Sage FROM Student ORDER BY Sage
参考答案