单项选择题
A.select * from emp where ename in 'S%'; B.select * from emp where ename='S%'; C.select * from emp where ename like 'S%'; D.select * from emp where ename like 'S_';
查询出当前的数据库系统时间,精确到秒()A.select to_date(sysdate,YYYY-MM-DD...
单项选择题查询出当前的数据库系统时间,精确到秒()
A.select to_date(sysdate,'YYYY-MM-DD HH24:MI:SS') from dual; B.select to_char(sysdate,'YYYY-MM-DD HH24:MI:SS') from dual; C.select date(sysdate,'YYYY-MM-DD HH24:MI:SS') from dual; D.select chr(sysdate,'YYYY-MM-DD HH24:MI:SS') from dual;
怎样取出在集合A中,又在集合B中的数据()A.A UNION BB.A UNION ALL BC.A INTE...
单项选择题怎样取出在集合A中,又在集合B中的数据()
A.A UNION B B.A UNION ALL B C.A INTERSECT B D.A MIUS B
怎样取出在集合A中,但却不在集合B中的数据()A.A MIUS BB.B MINUS AC.A INTERSE...
单项选择题怎样取出在集合A中,但却不在集合B中的数据()
A.A MIUS B B.B MINUS A C.A INTERSECT B D.B INTERSECT A