问题描述
我在具有timestamp数据类型的MySQL表中有一个字段.我将数据保存到该表中.但是,当我将时间戳(1299762201428)传递到记录时,它会自动将值0000-00-00 00:00:00保存到该表中.
如何将时间戳存储在MySQL表中?
这是我的INSERT语句:
INSERT INTO table_name (id,d_id,l_id,connection,s_time,upload_items_count,download_items_count,t_time,status) VALUES (1,5,9,'2',1299762201428,5,10,20,'1'), (2,5,9,'2',1299762201428,5,10,20,'1')
推荐答案
像这样的传递
date('Y-m-d H:i:s','1299762201428')
其他推荐答案
嘿,使用FROM_UNIXTIME()函数为此.
这样:
INSERT INTO table_name (id,d_id,l_id,connection,s_time,upload_items_count,download_items_count,t_time,status) VALUES (1,5,9,'2',FROM_UNIXTIME(1299762201428),5,10,20,'1'), (2,5,9,'2',FROM_UNIXTIME(1299762201428),5,10,20,'1')
其他推荐答案
$created_date = date("Y-m-d H:i:s"); $sql = "INSERT INTO $tbl_name(created_date)VALUES('$created_date')"; $result = mysql_query($sql);
问题描述
I have a field in a MySQL table which has a timestamp data type. I am saving data into that table. But when I pass the timestamp (1299762201428) to the record, it automatically saves the value 0000-00-00 00:00:00 into that table.
How can I store the timestamp in a MySQL table?
Here is my INSERT statement:
INSERT INTO table_name (id,d_id,l_id,connection,s_time,upload_items_count,download_items_count,t_time,status) VALUES (1,5,9,'2',1299762201428,5,10,20,'1'), (2,5,9,'2',1299762201428,5,10,20,'1')
推荐答案
pass like this
date('Y-m-d H:i:s','1299762201428')
其他推荐答案
Hey there, use the FROM_UNIXTIME() function for this.
Like this:
INSERT INTO table_name (id,d_id,l_id,connection,s_time,upload_items_count,download_items_count,t_time,status) VALUES (1,5,9,'2',FROM_UNIXTIME(1299762201428),5,10,20,'1'), (2,5,9,'2',FROM_UNIXTIME(1299762201428),5,10,20,'1')
其他推荐答案
$created_date = date("Y-m-d H:i:s"); $sql = "INSERT INTO $tbl_name(created_date)VALUES('$created_date')"; $result = mysql_query($sql);