單項(xiàng)選擇題在mysql數(shù)據(jù)庫(kù)中查詢數(shù)據(jù)時(shí),可以通過(guò)別名來(lái)簡(jiǎn)化數(shù)據(jù)庫(kù)表名,可以通過(guò)關(guān)鍵字()來(lái)操作。

A.add
B.at
C.like
D.as


您可能感興趣的試卷

你可能感興趣的試題

1.單項(xiàng)選擇題刪除score表中的id字段,下列SQL語(yǔ)句中可以實(shí)現(xiàn)的是()

A.alter table score drop id;
B.alter table score delete id;
C.alter table score modify id;
D.alter table score change id;

2.單項(xiàng)選擇題刪除不用的表,比如要?jiǎng)h除score表,判斷score表要是存在則刪除,那么下列SQL語(yǔ)句可以實(shí)現(xiàn)的是()。

A.drop table to score;
B.drop table score;
C.drop table ifexists score;
D.create table score;

4.單項(xiàng)選擇題有report表有如下字段:姓名性別年齡地址那么要查詢年齡在18歲以上的所有人的信息,那么應(yīng)該如何查詢()

A.select*fromr eport
B.select年齡from report
C.select*from report where性別=’男’
D.selec*from report where年齡>=18