單項選擇題

指出下面sql語句錯誤之處()
select id_number “Part Number”, sum(price) “price” from inventory where price >50 group by “Part Number” order by 2;

A.order by 2
B.from inventory
C.where price>50
D.group by “Part Number”


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題變量v_time=’23-MAY-00’, 如下那條語句返回值為’01-JAN-00’?()

A.select round(v_time,’DAY’) from dual
B.select round(v_time,’YEAR’) from dual
C.select round(v_time,’MONTH’) from dual
D.A select round(to_char(v_time,’yyyy’)) from dual

2.單項選擇題

如下語句: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字句中去掉表名,只要字段名稱即可

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

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

4.單項選擇題存在兩個結(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;