当前位置: 技术问答>java相关
向数据库中插入一个时间记录,要求从年精确到秒,什么格式?
来源: 互联网 发布时间:2015-09-17
本文导语: 如题 | import java.util.*; import java.text.*; java.util.Date d = new java.util.Date(); SimpleDateFormat fm= new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //the date format String strDate=fm.format(d); insert into table (date) valu...
如题
|
import java.util.*;
import java.text.*;
java.util.Date d = new java.util.Date();
SimpleDateFormat fm= new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //the date format
String strDate=fm.format(d);
insert into table
(date)
values (strDate)
import java.text.*;
java.util.Date d = new java.util.Date();
SimpleDateFormat fm= new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //the date format
String strDate=fm.format(d);
insert into table
(date)
values (strDate)
|
insert into table (test_date) values (to_date('2002-09-01 16:12:12','yyyy-mm-dd hh24:mi:ss');