單項選擇題執(zhí)行Select Max(intAge)As MaxAge,Min(intAge)As MinAge From tbAddress語句后,會返回()條記錄。

A.0
B.1
C.2
D.不能確定


您可能感興趣的試卷

你可能感興趣的試題

2.多項選擇題要在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

3.多項選擇題要在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)

4.單項選擇題下面()語句可以查詢姓“趙”并且年齡等于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

5.單項選擇題下面()語句可以查詢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#