A.Select email from student where email !=null B.Select email from student where email not is null C.Select email from student where email<>null D.Select email from student where email is no tnull
单项选择题执行SQL语句:select*,score*0.5+20 as 加权成绩from grade where(score*0.5+20<60orderbyscore*0.5+20,以下描述是正确的()。
A.错误提示:orderby子句中不能出现表达式。 B.正确执行,显示grade表中各列值,按照score由低到高排序。 C.正确执行,显示grade表中各列值,以及加权成绩列,按照score由低到高排序。 D.错误提示:where子句中不能出现表达式。
单项选择题SQL server提供了一些字符串函数,以下说法错误的是()。
A.selectright(’hello’,3)返回值为:hel B.selectltrim(rtrim(’hello’))返回值为:hello(前后都无空格) C.selectreplace(’hello’,’e’,’o’)返回值为:hollo D.selectlen(’hello’)返回值为:5
单项选择题ORDER BY的作用是()。
A.查询输出分组 B.设置查询条件 C.对记录排序 D.限制查询返回的数据行
单项选择题()可以同一个表的不同字段进行联接。
A.内联接 B.自联接 C.外联接 D.左联接
单项选择题在表student中,包含主键列StuID,则执行 UpdatestudentsetStuID=80 ,执行的结果可能是()。
A.更新了多行数据 B.没有数据更新 C.删除了一行不符合要求的数据 D.T_SQL语法错误,不能执行