错误日志:
{ [Error: Incorrect datetime value: ‘2012-08-24T17:29:11.683Z’ for
column ‘robot _refreshed_at’ at row 1] number: 1292,sqlStateMarker:
‘#’,sqlState: ‘22007’,message: ‘Incorrect datetime value:
&;2012-08-24T17:29:11.683Z&; for column &; robot_refreshed_at&; at row
1′,sql: ‘INSERT INTO users
(id,name,count_moments,count_likes,count_followers,rob
ot_refreshed_at,robot_count_followers) VALUES
(&;1834084&;,&;NNNyingzi&;,&;5&;,
‘0&;,&;0&;,&;2012-08-24T17:29:11.683Z&;,&;0&;)’,setMaxListeners:
[Function],emit: [Function],addListener: [Function],on: [Function],
once: [Function],removeListener: [Function],removeAllListeners:
[Function],listeners: [Function] }
我在Node.js中使用这段代码
if s instanceof Date
return s.toISOString()
并在数据库中更新它们.
SQL插入表达式如下:
INSERT INTO users (id,rob ot_refreshed_at,robot_count_followers) VALUES ('1834084','NNNyingzi','5', '0','0','2012-08-24T17:29:11.683Z','0')
我做错了吗?我只是从服务器中的表中使用PHPMyAdmin复制了一个表.
非常感谢.
最佳答案
如Date and Time Literals所述:
MySQL recognizes 07001 and 07002 values in these formats:
-
As a string in either 'YYYY-MM-DD HH:MM:SS' or 'YY-MM-DD HH:MM:SS' format. A “relaxed” syntax is permitted here,too: Any punctuation character may be used as the delimiter between date parts or time parts. For example,'2012-12-31 11:30:45' ,'2012^12^31 11+30+45' ,'2012/12/31 11*30*45' ,and '2012@12@31 11^30^45' are equivalent.
-
As a string with no delimiters in either 'YYYYMMDDHHMMSS' or 'YYMMDDHHMMSS' format,provided that the string makes sense as a date. For example,'20070523091528' and '070523091528' are interpreted as '2007-05-23 09:15:28' ,but '071122129015' is illegal (it has a nonsensical minute part) and becomes '0000-00-00 00:00:00' .
-
As a number in either YYYYMMDDHHMMSS or YYMMDDHHMMSS format,provided that the number makes sense as a date. For example,19830905132800 and 830905132800 are interpreted as '1983-09-05 13:28:00' .
A 07001 or 07002 value can include a trailing fractional seconds part in up to microseconds (6 digits) precision. Although this fractional part is recognized,it is discarded from values stored into 07001 or 07002 columns. For information about fractional seconds support in MySQL,see 07007.
您的日期字体’2012-08-24T17:29:11.683Z’不适合任何这些格式;建议你 –
>使用Node.js Date对象的toLocaleFormat() 方法(确保MySQL连接的时区与Node.js的语言环境的时区匹配):
if s instanceof Date
return s.toLocaleFormat("%Y-%m-%d %H:%M:%S")
>使用Node.js Date对象的valueOf() 方法获取自UNIX纪元以来的时间值(以毫秒为单位),除以1000(从UNIX纪元开始获得秒数)并通过MySQL的FROM_UNIXTIME() 函数.
(编辑:李大同)
【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!
|