单项选择题
语句select ROUND(45.953,-1),TRUNC(45.936,2)from dual;的结果是()。
A.46 and 45
B.46 and 45.93
C.50 and 45.93
D.50 and 45.9
点击查看答案
相关考题
-
单项选择题
在执行语句SELECT department_id FROM employees,departments WHERE employees.department_id= departments.department_id;时报错,原因是()。
A.没有给表employees和表departments加别名
B.没有给列department_id加别名
C.不能用employees.department_id=departments.department_id作为条件
D.SELECT后面的department_id没有指定是哪个表 -
单项选择题
有个员工表employees,该表中有职务列。你想检查哪些员工的信息中没有填写职务一栏,应该使用()。
A.Select*from employees where职务=NULL
B.Select*from employees where职务=‘NULL’
C.Select*from employees where职务ISNULL
D.Select*from employees where职务IS‘NULL’ -
单项选择题
学生信息表Student如下所示:学号姓名所在省市0001李辉北京0002张明上海0003王小玉北京0004李淑华湖南0005赵静上海查询所有学生来自于哪几个省市使用的语句为()。
A.Select unique所在省市from Student
B.Select所在省市from Student
C.Select only所在省市from Student
D.Select distinct所在省市from Student
