A.select(name)from table person:所有記錄的name字段的值
B.select(name)from person where age=12 or name="aa";or或者
C.select(name)from table person where age=12;查找age=12的記錄的那個字段的值
D.select(name,age)from person where age=12 and name="aa";and并且
您可能感興趣的試卷
你可能感興趣的試題
A.刪除
B.新建
C.還原
D.插入
A.結構簡單
B.有標準語言
C.適用于集合操作
D.可表示復雜的語義
A.insert into表名values(字段名1對應的值);
B.insert into表名values(字段名1對應的值,字段名2對應值);
C.insert into表名(字段名1)value(字段名1對應的值);
D.insert into表名(字段名1,字段名2)values(字段名1對應的值,字段名2對應值);
A.“\G”
B.“。”
C.“\g”
D.“;”
A.檢索products表中prod_name字段以’se’結尾的數(shù)據(jù)
B.檢索products表中prod_name字段以’se’開關的數(shù)據(jù)
C.檢索products表中prod_name字段包含’se’的數(shù)據(jù)
D.檢索products表中prod_name字段不包含’se’的數(shù)據(jù)
最新試題
一個關系模式中只能有一個候選碼。
索引一定比表中的數(shù)據(jù)占用的存儲空間小。
NF是一個可用的關系模式應該滿足的最低范式。
存儲過程可以定義參數(shù)。
任何SQL 語句都需要手動COMMIT 來提交事務。
觸發(fā)器是基于一表創(chuàng)建的,所以只能對該表操作。
啟用日志不會降低MySQL數(shù)據(jù)庫的性能。
關系是若干表的集合。
SQL是一種非過程化的語言,只需告訴數(shù)據(jù)庫干什么,不必告訴怎么干。
一個表可以創(chuàng)建多個不同的視圖。