單項選擇題實現(xiàn)查詢學生表STUDENT信息,并按照出生日期倒序排列的SQL語句為()

A.select *from student sort by Birthday
B.select *from student order by Birthday
C.select *from student order by Birthday Desc
D.select *from student sort by Birthday Desc


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題對學生表STUDENT插入數(shù)據(jù),其正確的SQL語句為()

A.insert student value ("2015001",“XX“)
B.insert student value (’2015001’,’XX’)
C.insert into student value (’2015001’,’XX’)
D.insert into student values (’2015001’,’XX’)

2.單項選擇題實現(xiàn)Oracle數(shù)據(jù)庫表對象刪除的SQL語句為()

A.delete < 表名>
B.drop < 表名>
C.delete table < 表名>
D.drop table < 表名>