单项选择题
查找authors表中的所有电话号码的首位为4,第二位为0或1的电话号码()。
A.SELECT phone FROM authors WHERE phone LIKE’4[1,0]%’ B.SELECT phone FROM authors WHERE phonein’4[^10]%’ C.SELECT phone FROM authors WHERE phone LIKE’4_[1,0]%’ D.SELECT phone FROM authors WHERE phone between’41%’and’40%’
单项选择题 查询student表中的所有非空email信息,以下语句正确的是()。
单项选择题 执行SQL语句:select*,score*0.5+20 as 加权成绩from grade where(score*0.5+20<60orderbyscore*0.5+20,以下描述是正确的()。
单项选择题 SQL server提供了一些字符串函数,以下说法错误的是()。