A.錯誤提示:主鍵列不能更新。 B.更新了一條數(shù)據(jù)。 C.錯誤提示:違反主鍵約束。 D.既不提示錯誤,也不更新數(shù)據(jù)。
A.select avg(price),type from book group by type B.select count(price),type from book group by price C.select avg(price),type from book group by price D.select count(price),type from book group by type
A.selec tright(’hello’,3)返回值為:hel B.selec tltrim(rtrim(’hello’))返回值為:hello(前后都無空格) C.selec treplace(’hello’,’e’,’o’)返回值為:hollo D.selec tlen(’hello’)返回值為:5