The software of Sql Data Builder is to make the replant of DB for the deployment much more convenient. Such as: the information for Geography Mapping of the whole world, or even the standard of interconvert between Fiscal Date Time and Calendar Date
SQL计算timestamp的差值的方法
概述
有时候我们需要按照时间找出某些记录,比如说:算出离销售时间前1个小时的记录。
通常我们可以使用MYSQL的timestampdiff函数来做,但是这样没法使用到索引,如果数据量大的话,会造成慢查询。
用代码计算出时间后再传给SQL
我们可以利用JAVA代码,先把时间计算好,然后传给SQL语句,避免使用MYSQL的函数。
public long xxxx(long sellTimeFrom){
Calendar calendar = Ca