• 2022-07-26
    下列的查询语句哪一项是错误的(选一项)
    A: Select * from stumarks where score>=60
    B: Select * from (select * from stumarks where score>=60)
    C: Select * from (select * from stumarks where score>=60) as temp
    D: Select * from (select * from stumarks ) as temp where score>=60
  • 举一反三