多項選擇題要在tbAddress表中插入記錄,下面()語句是正確的。

A.Insert Into tbAddress(strName,strTel)Values("萌萌","6545632")
B.Insert Into tbAddress(strName,strEmail)Values("萌萌","")
C.Insert Into tbAddress(strName,strEmail)Values("萌萌",NULL)
D.Insert Into tbAddress(strName,intAge)Values(萌萌,22)


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題下面()語句可以查詢姓“趙”并且年齡等于22歲的用戶。

A.Select * From tbAddress Where strName="趙"And intAge=22
B.Select * From tbAddress Where strName like"趙%"And intAge="22"
C.Select * From tbAddress Where strName like"趙%"And intAge=22
D.Select * From tbAddress Where strName like"%趙%"And intAge=22

2.單項選擇題下面()語句可以查詢strName為"萌萌"且是2008年8月8日前注冊的用戶。

A.Select * From tbAddress Where strName=萌萌 And dtmSubmit<#2008-8-8#
B.Select * From tbAddress Where strName="萌萌"And dtmSubmit<2008-8-8
C.Select * From tbAddress Where strName="萌萌"And dtmSubmit<#2008-8-8#
D.Select * From tbAddress Where strName="萌萌"Or dtmSubmit<#2008-8-8#