單項選擇題在SQL的Select語句的下列子句中,通常和Having子句一起使用的是()
A.Order By子句
B.Where子句
C.Group By子句
D.不確定
您可能感興趣的試卷
你可能感興趣的試題
1.單項選擇題與“Where 圖書數(shù)量 Between 10 And 30”完成等價的是()
A.Where 圖書數(shù)量>10 And 圖書數(shù)量<30
B.Where 圖書數(shù)量>=10 And 圖書數(shù)量<30
C.Where 圖書數(shù)量>=10 And 圖書數(shù)量<=30
D.Where 圖書數(shù)量>10 And 圖書數(shù)量<=30
2.單項選擇題若要檢索“Student”數(shù)據(jù)表中的所有記錄和字段,則SQL語句為()
A.Selec t姓名,性別 From Student
B.Select*From Student
C.Select 姓名,性別 From Student Where 姓名=“張山“
D.Select*From Student Where 姓名=“張山“