单项选择题
查询出EMP表中COMM字段为空的记录()
A.select * from emp where comm=''; B.select * from emp where comm=null; C.select * from emp where nvl(comm)=0; D.select * from emp where comm is null; E.select * from emp where nvl(comm,0)=0;
单项选择题 取出工资在2000到3000元(包括上下限)之间的员工()
单项选择题 查询出所有名字以’S’开始的员工()
单项选择题 查询出当前的数据库系统时间,精确到秒()