單項選擇題在SQLServer數(shù)據(jù)庫中,HAVING和WHERE子句以及GROUPBY可以在同一SELECT語句中使用,其正確的先后順序為()

A.GROUP BY WHERE HAVING
B.WHE REGROUP BY HAVING
C.WHE REHAVING GROUP BY
D.HAVING WHERE GROUP BY


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題查詢student表中的所有非空email信息,以下語句正確的是()

A.Select email from student where email!=null
B.Select email from student where emailnotisnull
C.Select email from student where email<>null
D.Select email from student where emailisnotnull

3.單項選擇題一個電視經(jīng)銷商在表Tvtype中維護庫存的電視信息,下述()語句能顯示價格(iprice)最昂貴的三種電視機的信息(cDiscription)

A.select top3 cDiscription fromTvtype order by iprice asc
B.select cDiscription from Tvtype where max(iprice)>3
C.select top3 cDiscription from Tvtype order by iprice desc
D.selec tcDiscription max(iprice)from Tvtype order by iprice

4.單項選擇題有名為 Sales 的表,現(xiàn)需要按客戶姓名(CustomerName)和銷售日期(SalesDate)排序返回銷售數(shù)據(jù)。為每個客戶提供最近期的銷售必須首先列出。應(yīng)使用的查詢語句為()

A.select CustomerName,SalesDate from Sales group by CustomerName,SalesDate
B.select CustomerName,SalesDate from Sales order by CustomerName,SalesDate
C.select CustomerName,SalesDate from Sales group by CustomerNameorderbySalesDateDESC
D.select CustomerName,SalesDate from Sales order by CustomerName,SalesDateDESC

5.單項選擇題創(chuàng)建一個名為’catt’的新表,要求該表包含’kehu’表的所有記錄,應(yīng)使用的SQL語句是()

A.select*intocatt where from kehu
B.select*into catt from kehu
C.insert into catt select*from kehu
D.inser tinto catt from select*from kehu

最新試題

參數(shù)的取名可以與數(shù)據(jù)表的列名相同。

題型:判斷題

存儲過程命名規(guī)則與數(shù)據(jù)庫、數(shù)據(jù)表、列等標(biāo)識符命名可以隨心所欲,不需要規(guī)則一致。

題型:判斷題

在insert語句中可以嵌入子查詢,通過子查詢將來自其他數(shù)據(jù)表的數(shù)據(jù)批量插入到所需的數(shù)據(jù)表中。

題型:判斷題

在MySQL中,使用insert語句向數(shù)據(jù)庫表插入數(shù)據(jù)記錄的方式有()

題型:多項選擇題

插入作為一種SQL操作,除了需要正確的命令語法外,還要求插入數(shù)據(jù)必須與數(shù)據(jù)表上的(),否則正確的語法也無法實現(xiàn)正常的插入操作。

題型:填空題

以下關(guān)于級聯(lián)刪除描述正確的是()

題型:多項選擇題

out模式定義的參數(shù)只能在過程體內(nèi)部賦值,表示該參數(shù)可以將某個值傳遞回調(diào)用他的過程。

題型:判斷題

視圖的意義:為用戶集中提取數(shù)據(jù)、隱蔽數(shù)據(jù)庫的復(fù)雜性,使操作簡便化、增加數(shù)據(jù)的安全性、提高表的邏輯獨立性。

題型:判斷題

在定義數(shù)據(jù)表結(jié)構(gòu)的時候,設(shè)置數(shù)據(jù)表之間的存在關(guān)系為“級聯(lián)更新”,會為保證數(shù)據(jù)一致性帶來方便,但也存在“一改全改”的數(shù)據(jù)變化風(fēng)險。

題型:判斷題

視圖就是一個虛表,保存視圖時,保存的是視圖的定義。

題型:判斷題