A.check(sex=0 or sex=1)
B.check(sex between 0 and 1)
C.check(sex in(0,1))
D.check(sex =(O,1))
您可能感興趣的試卷
你可能感興趣的試題
A.設(shè)置了unique的字段的值必須唯一
B.設(shè)置了unique的字段的值不能為null
C.設(shè)置了primary key的字段一定設(shè)置有unique屬性
D.設(shè)置了unique的字段一定有索引
A.主鍵
B.外鍵
C.默認(rèn)值
D.UNIQUE約束
A.只是修改
B.只是插入
C.只是刪除
D.修改、插入、刪除
A.SELECT quantity,UnitPrice FROM sales
B.SELECT quantity,UnitPrice,quantity+UnitPrice AS totalPrices FROM sales
C.SELECT quantity,UnitPrice,quantity*UnitPrice AS totalPrices FROM sales
D.SELECT quantity,UnitPrice,sum(quantity*UnitPrice) AS totalPrice FROM sales
A.selectc ompanyname,fax from suppliers where fax is null
B.select companyname,fax from suppliers where country in(’China’,’Italy’)
C.select companyname,fax from suppliers where country=’China’ or country=’Italy’
D.select companyname,fax from suppliers where fax=null
最新試題
啟用日志不會(huì)降低MySQL數(shù)據(jù)庫的性能。
事務(wù)COMMIT 之后,還可以撤銷。
數(shù)據(jù)庫外模式與內(nèi)模式的映像實(shí)現(xiàn)了數(shù)據(jù)庫的物理數(shù)據(jù)獨(dú)立性。
任何SQL 語句都需要手動(dòng)COMMIT 來提交事務(wù)。
觸發(fā)器是基于一表創(chuàng)建的,所以只能對(duì)該表操作。
每次修改my.ini 文件中的參數(shù)后,必須重新啟動(dòng)MySQL 服務(wù)才會(huì)生效。
表的同一列數(shù)據(jù)必須有相同的數(shù)據(jù)類型。
SQL是一種非過程化的語言,只需告訴數(shù)據(jù)庫干什么,不必告訴怎么干。
用mysqldump命令備份后形成的.sql文件,可用mysql call命令導(dǎo)入到數(shù)據(jù)庫中。
一個(gè)表可以創(chuàng)建多個(gè)不同的視圖。