單項(xiàng)選擇題查詢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


您可能感興趣的試卷

你可能感興趣的試題

2.單項(xiàng)選擇題一個電視經(jīng)銷商在表Tvtype中維護(hù)庫存的電視信息,下述()語句能顯示價格(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

3.單項(xiàng)選擇題有名為 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

4.單項(xiàng)選擇題創(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

5.單項(xiàng)選擇題下列T-SQL數(shù)學(xué)運(yùn)算語句,與SELECT2*5執(zhí)行結(jié)果相同的是()

A.SELECT20%2
B.SELECT2*5.0
C.SELECT20.0/2
D.SELECT20/2

最新試題

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

題型:判斷題

在MYSQL中,存儲過程不可以帶有參數(shù)。

題型:判斷題

MYSQL存儲過程優(yōu)點(diǎn)有,封裝性、增強(qiáng)SQL語句的功能和靈活性、減少網(wǎng)絡(luò)流量、高數(shù)據(jù)庫的安全性和數(shù)據(jù)的完整性。

題型:判斷題

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

題型:判斷題

MySQL通過賦予/撤銷某個用戶對某個數(shù)據(jù)庫或某個表的某項(xiàng)權(quán)力(讀、寫、更改、刪除等),來保證數(shù)據(jù)安全。

題型:判斷題

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

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

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

題型:判斷題

MySQL服務(wù)器通過()來維護(hù)連接的客戶端,其作用域僅限于當(dāng)前連接。

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

正常情況下一般刪除命令都會有帶WHERE子句。

題型:判斷題

在MySQL中,用單條INSERT語句處理多個插入要比使用多條INSERT語句效率更高。

題型:判斷題