單項選擇題

如下語句:select i.id_number, m.id_number from inventory i, manufacturer m where 
i.manufacturer_id = m.id_number order by inventory.description 
執(zhí)行是錯誤的,請問以下措施哪個能夠改正這個錯誤? ()

A.在order by字句中使用表的別名
B.where 字句中去掉表的別名
C.where字句中用表名代替表的別名
D.order by字句中去掉表名,只要字段名稱即可


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題用truncate和delete語句刪除表中數(shù)據(jù)的區(qū)別()

A.truncate 命令不記錄日志
B.truncate 命令記錄日志
C.delete命令不記錄日志

2.單項選擇題存在兩個結(jié)構(gòu)相同的數(shù)據(jù)庫表T1(col1,col2,col3)、T2(col1,col2,col3),寫出一SQL語句將所有T1數(shù)據(jù)導(dǎo)入到T2表()

A.select col1,col2,col3 from T1 into T2(col1,col2,col3)
B.insert T1 (col1,col,col3) into T2(col1,col2,col3)
C.insert into T2 (col1,col2,col3) as select col1,col2,col3 from T1
D.insert into T2(col1,col2,col3) select col1,col2,col3 from T1;