A.數(shù)據(jù)庫(kù)對(duì)創(chuàng)建表的數(shù)量沒(méi)有限制
B.創(chuàng)建數(shù)據(jù)庫(kù)表示不能同時(shí)創(chuàng)建約束
C.創(chuàng)建數(shù)據(jù)庫(kù)表的同時(shí)創(chuàng)建主鍵,實(shí)際上是在創(chuàng)建表后對(duì)表進(jìn)行修改
D.創(chuàng)建數(shù)據(jù)庫(kù)表的同時(shí)創(chuàng)建外鍵,實(shí)際上是在創(chuàng)建表后對(duì)表進(jìn)行修改
您可能感興趣的試卷
你可能感興趣的試題
A.GROUP BY WHERE HAVING
B.WHE REGROUP BY HAVING
C.WHE REHAVING GROUP BY
D.HAVING WHERE GROUP BY
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
A.LIMIT
B.TOP
C.COUNT
D.SUM
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
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
![](https://static.ppkao.com/ppmg/img/appqrcode.png)
最新試題
視圖就是一個(gè)虛表,保存視圖時(shí),保存的是視圖的定義。
在MySQL中,用單條INSERT語(yǔ)句處理多個(gè)插入要比使用多條INSERT語(yǔ)句效率更高。
在實(shí)際應(yīng)用中,為了防止新建視圖與已存在的視圖重名產(chǎn)生沖突,常用CREATE OR REPLACE VIEW來(lái)創(chuàng)建新視圖。
用戶可以超出權(quán)限控制對(duì)數(shù)據(jù)庫(kù)進(jìn)行訪問(wèn)。
out模式定義的參數(shù)只能在過(guò)程體內(nèi)部賦值,表示該參數(shù)可以將某個(gè)值傳遞回調(diào)用他的過(guò)程。
MySQL變量可分為兩大類,即用戶變量和系統(tǒng)變量。
MySQL數(shù)據(jù)庫(kù)中,通常將用戶寫入對(duì)應(yīng)的權(quán)限表來(lái)控制訪問(wèn)權(quán)限的,以下屬于用戶權(quán)限得選項(xiàng)()
/*……*/用來(lái)標(biāo)記程序的注釋部分,注釋的目的是增加程序的可讀性,其中的內(nèi)容不會(huì)被執(zhí)行。
在insert語(yǔ)句中可以嵌入子查詢,通過(guò)子查詢將來(lái)自其他數(shù)據(jù)表的數(shù)據(jù)批量插入到所需的數(shù)據(jù)表中。
批量記錄插入,可以不要求插入數(shù)據(jù)結(jié)構(gòu)匹配,與約束不沖突。