单项选择题
取出工资在2000到3000元(包括上下限)之间的员工()
A.select * from emp wher sal in (2000,3000); B.select * from emp wher sal like (2000,3000); C.select * from emp wher sal = (2000,3000); D.select * from emp wher sal between 2000 and 3000;
单项选择题 查询出所有名字以’S’开始的员工()
单项选择题 查询出当前的数据库系统时间,精确到秒()
单项选择题 怎样取出在集合A中,又在集合B中的数据()