MySQL: Insert datetime into other datetime field(MySQL:将日期时间插入其他日期时间字段)
问题描述
我有一个包含 DATETIME 列的表.我想选择这个日期时间值并将其插入另一列.
I have a table with a DATETIME column. I would like to SELECT this datetime value and INSERT it into another column.
我这样做了(注意:'2011-12-18 13:17:17' 是前 SELECT 从 DATETIME 字段中给我的值):
I did this (note: '2011-12-18 13:17:17' is the value the former SELECT gave me from the DATETIME field):
UPDATE products SET former_date=2011-12-18 13:17:17 WHERE id=1
得到
1064 - You have an error in your SQL syntax;
check the manual that corresponds to your MySQL server version
for the right syntax to use near '13:17:17 WHERE itemid=1' at line 1
好的,我知道在其中放一个不带引号的字符串是错误的,但是 DATETIME 首先只是一个字符串吗?我在里面放了什么做什么?我想要的只是将现有值可靠地转移到新的日期时间字段...
Ok, I understand it's wrong to put an unquoted string in there, but is DATETIME just a string in the first place? What do I put in there? All I want is reliably transfer the existing value over to a new datetime field...
我问的原因是:我有这个特殊的定义,DATETIME,不知何故,我认为它在处理日期时给了我一些安全性和其他优势.现在看来它只是一个专门的 VARCHAR,可以这么说.
The reason I ask is: I have this special definition, DATETIME, and somehow I thought it gives me some security and other advantages when handling dates. Now it seems it is simply a specialized VARCHAR, so to speak.
感谢您的回答,看来这确实是预期的行为.
Thanks for your answers, it seems this is indeed the intended behaviour.
推荐答案
根据 MySQL 文档,您应该能够将该日期时间字符串括在单引号中,('YYYY-MM-DD HH:MM:SS')它应该可以工作.看这里:日期和时间文字
According to MySQL documentation, you should be able to just enclose that datetime string in single quotes, ('YYYY-MM-DD HH:MM:SS') and it should work. Look here: Date and Time Literals
所以,在你的情况下,命令应该如下:
So, in your case, the command should be as follows:
UPDATE products SET former_date='2011-12-18 13:17:17' WHERE id=1
这篇关于MySQL:将日期时间插入其他日期时间字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MySQL:将日期时间插入其他日期时间字段


- SQL 临时表问题 2022-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 更改自动增量起始编号? 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01