• 2022-06-09
    计算机系年龄最大的学生的信息select *from studentwhere __________________________________
    A: sdept='计算机系' and sage=(select max(sage) from student where sdept='计算机系')
    B: sdept='计算机系' and sage=max(sage)
    C: sdept='计算机系' or sage=(select max(sage) from student )
    D: sdept='计算机系' or sage=max(sage)
  • 举一反三