mysql怎么插入时间,要又是时分秒的!
用户注册,注册到数据库,怎么插入数据库注册时间!有时分秒的!
insert into 'user' ('name','passowrd','date') value (?,?,?)
然后怎么填充?
------解决方案--------------------
------解决方案--------------------
Timestamp 使用这个 import java.sql.Timestamp;
Java code
Timestamp t = new Timestamp(new Date().getTime());
SimpleDateFormat f = new SimpleDateFormat("yyyy-MM-dd kk:mm:ss");
System.out.println(f.format(t));