A.selectdatalength(‘abcde’)返回值為:5 B.selectconvert(char(3),12345) ;返回值為:123 C.selectconvert(char(5),12345) ;返回值為:12345
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
A.唯一性約束 B.檢查約束 C.主鍵約束 D.默認(rèn)約束