gpt4 book ai didi

mysql插入自动增量和日期

转载 作者:行者123 更新时间:2023-11-29 03:52:20 27 4
gpt4 key购买 nike

mytable
+-----------+----------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-----------+----------+------+-----+---------+----------------+
| id | int(255) | NO | PRI | NULL | auto_increment |
| date | date | NO | | NULL | |
| answer_id | int(255) | NO | MUL | NULL | |
| count | int(255) | YES | | NULL | |
+-----------+----------+------+-----+---------+----------------+

SQL:

INSERT INTO mytable ('date', 'answer_id', 'count')
VALUES ('2013-12-05', '4', '1');

给我 ERROR 1064

最佳答案

列不应包含在单引号中。单引号用于分隔字符串文字。

在您的情况下,您只需省略所有列周围的任何引号。

如果列名匹配mysql keyword它需要在两边用反引号 ` 包裹起来。

关于mysql插入自动增量和日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21297617/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com