多项选择题
要在tbAddress表中更新记录,下面()语句是正确的。
A.Update tbAddress Set strName="萌萌",intAge=22 Where ID=2
B.Update tbAddress Set strName=萌萌,intAge=22 Where strName=萌萌
C.Update tbAddress Set dtmSubmit=2008-10-1 Where strName="萌萌"
D.Update tbAddress Set intAge=18
相关考题
-
多项选择题
要在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) -
单项选择题
下面()语句可以查询姓“赵”并且年龄等于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 -
单项选择题
下面()语句可以查询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#
