赞
踩
数据库函数str_to_date()用法:
通过转换脚本生成的sql插入语句是字符串,需要把string形式的标准日期(yyyy-MM-dd HH:mm:ss)转换成数据库中的datetime格式的日期才能插入,所以在sql插入语句中要用时间函数转换成数据库自身的存储方式:str_to_date('字符形式的日期':'%Y-%m-%d %H:%i:%s')。
如下:
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss" );
String sqlStatement="insert into xxxTable `gmt_modified` values(“+str_to_date(\'"
+ formatter.format(new Date()) + "\',\'"+"%Y-%m-%d %H:%i:%s\'))" );
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。