• 2022-06-09
    现要利用Student表查询年龄最小的学生的姓名和年龄。下列实现此功能的查询语句中,正确的是______。
    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
  • 举一反三