單項選擇題PL/SQL語言是一種什么編程語言?()

A.通用數(shù)據(jù)庫的數(shù)據(jù)操作語言
B.通用數(shù)據(jù)庫的后端編程語言
C.Oracle數(shù)據(jù)庫的數(shù)據(jù)操作語言
D.Oracle數(shù)據(jù)庫的后端編程語言


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題針對視圖可以不受限制地進行如下哪類操作?()

A.插入數(shù)據(jù)
B.修改數(shù)據(jù)
C.刪除數(shù)據(jù)
D.查詢數(shù)據(jù)

2.單項選擇題下面哪項操作不是索引的合理使用?()

A.在檢索列上創(chuàng)建索引,可以加快檢索速度
B.在主鍵列上創(chuàng)建索引,可以組織表中數(shù)據(jù)存儲
C.在“性別”列上創(chuàng)建索引,可以加快檢索速度
D.在外鍵列上創(chuàng)建索引,可以加快連接速度

3.單項選擇題實現(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

4.單項選擇題對學生表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’)

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

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