單項選擇題Sql server提供了一些系統(tǒng)函數(shù),以下說法錯誤的是()。

A.selectdatalength(‘abcde’)返回值為:5
B.selectconvert(char(3),12345) ;返回值為:123
C.selectconvert(char(5),12345) ;返回值為:12345


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題假設(shè)訂單表orders用來存儲訂單信息,cid代表客戶編號,money代表單次訂購額,現(xiàn)要查詢每個客戶的訂購次數(shù)和每個客戶的訂購總金額,下面()sql語句可以返回正確結(jié)果。

A.select cid,count(distinct(cid)),sum(money) from orders group by cid
B.select cid,count(distinct(cid)),sum(money) from orders order by cid
C.select cid,count(cid),sum(money) from orders order by cid
D.select cid,count(cid),sum(money) from orders group by cid

2.單項選擇題定義列中可以接受的數(shù)據(jù)值或格式,稱為()。

A.唯一性約束
B.檢查約束
C.主鍵約束
D.默認約束

3.單項選擇題關(guān)于sql server常用的數(shù)據(jù)類型,以下()說法是錯誤的。

A.Image數(shù)據(jù)類型可以用來存儲圖像。
B.使用字符數(shù)據(jù)類型時,可以改變長度信息。
C.使用數(shù)字數(shù)據(jù)類型時,可以改變長度信息。
D.Bit數(shù)據(jù)類型為1位長度,可以存儲表示是/否的數(shù)據(jù)。

4.單項選擇題表book中包含三個字段:title(varchar),author(varchar),price(float)。Author的默認值是’UNKNOW’,執(zhí)行sql語句:insertbook(title,price)values(‘jsp’,50)。以下結(jié)果正確的是()。

A.插入失敗,sql語句有錯
B.插入成功,author列的數(shù)據(jù)是UNKNOW
C.插入成功,author列的數(shù)據(jù)是NULL
D.插入成功,author列的數(shù)據(jù)是50

5.多項選擇題關(guān)于主鍵,以下()說法是錯誤的。

A.主鍵可以用來確保表中不存在重復(fù)的數(shù)據(jù)行。
B.一個表必須有一個主鍵。
C.一個表只能有一個主鍵。
D.只能對整數(shù)型列設(shè)置主鍵。