alter user scott account unlock;

 

时间比较方式:

select * from emp where to_char(hiredate,'yyyy-mm-dd'')>'1982-01-01';

select * from emp where to_char(hiredate,'yyyy')='1980';

select * from emp where to_char(hiredate,'mm')='05';

 

select name, sal*13+nvl(comm,0)*13 年薪  from emp order by 年薪 desc;

相关文章:

  • 2022-12-23
  • 2022-01-02
  • 2021-11-13
  • 2021-12-03
  • 2021-08-31
  • 2021-10-14
  • 2021-09-10
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-07-26
  • 2022-12-23
  • 2021-11-28
  • 2021-11-13
相关资源
相似解决方案