SQL数据库查询语句⽇期格式转换
SQL语句因为⽇期格式问题报错:ORA-01756:quoted string not properly terminated。
错误含义:引⽤字符串不正确的终⽌。
报错SQL例句:select * from tb_business_order where business_time between  '2020-06-15' and  '2020-07-15';select语句查询日期
修改报错语句:select * from tb_business_order where business_time between  to_date('2020-06-15 00:00:00','yyyy-mm-dd hh24:mi:ss') and to_date('2020-07-15 00:00:00','yyyy-mm-dd hh24:mi:ss') ;
其中“HH24:MI:SS”为24⼩时制

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。