A.alter table employee alter column state varchar(100)
B.alter table employee column state varchar(100)
C.alter table employee alter column of state varchar(100)
D.alter table employee add column state varchar(100)
您可能感興趣的試卷
你可能感興趣的試題
A.delete student where sex in(NULL)
B.delete student where sex=NULL
C.delete student where sex is NULL
D.delete student where is NULL(sex,O)is NULL
A.更新了多行數(shù)據(jù)
B.沒有數(shù)據(jù)更新
C.更新了一行數(shù)據(jù)
D.出現(xiàn)錯誤
A.Insert into student(sid,sname)values(1,’Jack’)
B.Insert into student(sid,sname)values(1,"jack")
C.Insert into student values(1,"jack")
D.Insert into student values(’jack’)
A.declare
B.open
C.close
D.deallocate
A.原則性
B.一致性
C.持久性
D.對稱性
最新試題
在MySQL的權(quán)限授予語句中,可用于指定權(quán)限級別的值中*.*表示當(dāng)前數(shù)據(jù)庫中的所有表。
任何SQL 語句都需要手動COMMIT 來提交事務(wù)。
用mysqldump命令備份后形成的.sql文件,可用mysql call命令導(dǎo)入到數(shù)據(jù)庫中。
將2NF轉(zhuǎn)換為3NF是消除部分函數(shù)依賴的過程。
NF是一個可用的關(guān)系模式應(yīng)該滿足的最低范式。
在SQL語句中,數(shù)值型、字符型和日期型數(shù)據(jù)必須用單引號引起來。
事務(wù)COMMIT 之后,還可以撤銷。
每一個約束都有一個名字,這個名字可以在約束定義時指定,也可以不指定而由DBMS來自動命名。
一個表可以創(chuàng)建多個不同的視圖。
子查詢,顧名思義就是只能嵌套在查詢語句中。