Java / Oracle / mySQL date format

Java:

yyyy-MM-dd HH:mm:ss.SSS

 

Oracel:

yyyy-MM-dd HH24:mi:ss

select * from to_pub_report  where  report_time>=str_to_date('2019-07-31 14:39:41' ,'yyyy-MM-dd HH24:mi:ss')

 

MySQL

%Y-%m-%d %H:%i:%S

date_format(createdDate,'%Y-%m-%d')

方式一:
select * from to_pub_report  where  report_time>='2019-07-31 14:39:41'
方式二:
select * from to_pub_report  where  report_time>=str_to_date('2019-07-31 14:39:41' ,'%Y-%m-%d %H:%i:%S')

 

Guess you like

Origin www.cnblogs.com/zhaoyanhaoBlog/p/11278267.html