單項選擇題SQL Server中下列()語句能將employee表中的state字段擴充為varchar(100)。

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)


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題SQL Server中要刪除表student字段sex(值為NULL,0,1)中的值為NULL的數(shù)據(jù),以下語句正確的是()。

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

2.單項選擇題在SQL Sever 2005中,假設(shè)表stu中包含主鍵列AP列,更新語句是Update stuset AP=200 where AP=300,執(zhí)行結(jié)果不可能是()。

A.更新了多行數(shù)據(jù)
B.沒有數(shù)據(jù)更新
C.更新了一行數(shù)據(jù)
D.出現(xiàn)錯誤

3.單項選擇題在SQL Server 2005中,學(xué)生表student中包含以下字段:學(xué)生編號sid(主鍵,標(biāo)識列)和學(xué)生姓名sname,現(xiàn)在向該表中插入數(shù)據(jù),以下語句正確的是()。

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’)

4.單項選擇題下面()用來釋放游標(biāo)。

A.declare
B.open
C.close
D.deallocate

5.單項選擇題事務(wù)必須具有的性質(zhì)不包括()。

A.原則性
B.一致性
C.持久性
D.對稱性