oracle sql 时间比较

来源:互联网 发布:桃源网络硬盘 编辑:程序博客网 时间:2024/05/16 10:41
SimpleDateFormat f = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");String hql = "from BridgeEvalBeamDisplacementEntity where channelcode='"+channelcode +                "' and timeval >=  to_date('" + f.format(c.getTime()) + "', 'yyyy-MM-dd HH24:mi:ss')" +                " and timeval <=  to_date('" + f.format(d.getTime()) + "', 'yyyy-MM-dd HH24:mi:ss')" +                    " order by timeval asc";

网上查的以后查看方便。

0 0