單項(xiàng)選擇題在SQLServer數(shù)據(jù)庫(kù)中,HAVING和WHERE子句以及GROUPBY可以在同一SELECT語(yǔ)句中使用,其正確的先后順序?yàn)椋ǎ?/strong>

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


您可能感興趣的試卷

你可能感興趣的試題

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

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.單項(xiàng)選擇題一個(gè)電視經(jīng)銷商在表Tvtype中維護(hù)庫(kù)存的電視信息,下述()語(yǔ)句能顯示價(jià)格(iprice)最昂貴的三種電視機(jī)的信息(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.單項(xiàng)選擇題有名為 Sales 的表,現(xiàn)需要按客戶姓名(CustomerName)和銷售日期(SalesDate)排序返回銷售數(shù)據(jù)。為每個(gè)客戶提供最近期的銷售必須首先列出。應(yīng)使用的查詢語(yǔ)句為()

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.單項(xiàng)選擇題創(chuàng)建一個(gè)名為’catt’的新表,要求該表包含’kehu’表的所有記錄,應(yīng)使用的SQL語(yǔ)句是()

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

最新試題

mysql變量有4種類型:局部變量、用戶變量、會(huì)話變量和全局變量。

題型:判斷題

在SQL中,刪除操作有drop、truncate、delete,其中風(fēng)險(xiǎn)等級(jí)最高的是delete。

題型:判斷題

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

題型:判斷題

MySQL變量可分為兩大類,即用戶變量和系統(tǒng)變量。

題型:判斷題

不同的用戶合理地分配相應(yīng)權(quán)限,能有效控制不同用戶對(duì)不同數(shù)據(jù)的“增刪秘方”權(quán)限,是保護(hù)數(shù)據(jù)的一種有效手段。

題型:判斷題

MySQL數(shù)據(jù)庫(kù)中,通常將用戶寫入對(duì)應(yīng)的權(quán)限表來(lái)控制訪問(wèn)權(quán)限的,以下屬于用戶權(quán)限得選項(xiàng)()

題型:多項(xiàng)選擇題

想要實(shí)現(xiàn)級(jí)聯(lián)刪除必須在數(shù)據(jù)外鍵上設(shè)置“級(jí)聯(lián)”的更新或刪除。

題型:判斷題

批量記錄插入,可以不要求插入數(shù)據(jù)結(jié)構(gòu)匹配,與約束不沖突。

題型:判斷題

MySQL 5.0存貯過(guò)程的優(yōu)勢(shì)是()

題型:多項(xiàng)選擇題

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

題型:多項(xiàng)選擇題