Oracle11g 如何从表中显示EMP?

Oracle11g 如何从表中显示EMP?,oracle11g,Oracle11g,我想显示emp表中从1982年4月1日到目前为止工作的所有员工。 我怎样才能得到这些 我试过这个,但没有得到正确的答案。有人能帮我吗 从emp中选择*,其中hiredate='1982年4月1日' 您可以尝试以下方法: //if you hiredate column is date format select * from emp where hiredate > to_date('01-apr-1982','DD-mon-YYYY');

我想显示emp表中从1982年4月1日到目前为止工作的所有员工。 我怎样才能得到这些

我试过这个,但没有得到正确的答案。有人能帮我吗 从emp中选择*,其中hiredate='1982年4月1日'

您可以尝试以下方法:

//if you hiredate column is date format
select * from emp where hiredate > to_date('01-apr-1982','DD-mon-YYYY');