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.對稱性
最新試題
表的同一列數(shù)據(jù)必須有相同的數(shù)據(jù)類型。
事務(wù)COMMIT 之后,還可以撤銷。
概念模型獨立于任何一種數(shù)據(jù)模型,并且與具體的DBMS有關(guān)。
ORDER BY 默認(rèn)排序方向為DESC。
一個表上建立的索引越多,就越有利于查詢速度的提高。
為了保護數(shù)據(jù)庫,要盡可能多的使用root賬號來登錄,以此來確保數(shù)據(jù)的安全訪問。
觸發(fā)器是基于一表創(chuàng)建的,所以只能對該表操作。
SQL語言使用INSERT語句添加新的數(shù)據(jù)行,既可以添加一行數(shù)據(jù),也可以成批添加。
在MySQL的權(quán)限授予語句中,可用于指定權(quán)限級別的值中*.*表示當(dāng)前數(shù)據(jù)庫中的所有表。
Select查詢語句中into outfile子句的功能是將查詢結(jié)果輸出到指定文件中。