import java.text.*; import java.util.Calendar; public class VeDate { /** * 获取现在时间 * * @return 返回时间类型 yyyy-MM-dd HH:mm:ss */ public static Date getNowDate() { Date currentTime = new Date(); SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd…
Oracle(null等同于空字符'') 1.oracle插入空字符串默认替换成null 2.oracle查询(null和被替换的空字符)时使用 is null/is not null 3.使用聚合函数时自动忽略null值 Mysql(null不等同于空字符'') 1.mysql插入null显示为null,插入空字符串显示空 2.null查询用 is null/is not null,空字符''查询用 =''/<>'' 3.使用聚合函数时自动忽略null值 mapping.xml: <i…
将日期时间2016-05-13 16:07:50转化为字符串20160513 date_format select phone, date_format(time, '%Y%m%d%H%i%s') from user where phone='xxxxxxxx' #20160513160750select phone, date_format(time, '%Y%m%d') from user where phone='xxxxxxxx' …