30 假設有一個關聯式資料表 book 儲存書本的資料,內含兩個屬性 title 以及 author 分別表示書本的書名以及作者資料。若想要列出所有小明撰寫的書 名,請問下列的 SQL 指令何者正確?
(A) select title from book where author='小明';
(B) select title where book from author='小明';
(C) select book from title where author='小明';
(D) select book where title from author='小明';

答案:登入後查看
統計: A(269), B(71), C(79), D(52), E(0) #2910163

詳解 (共 1 筆)

#5431181
SELECT 欄位 FROM 資料表 W...
(共 29 字,隱藏中)
前往觀看
10
1