所以我一直在这个sql错误上停留了一段时间。
这是我正在使用的 SQL 行:
INSERT INTO images (image_name, orientation, restored, commercial, automotive, bespoke, before, after, date_added)
VALUES ('image4-after.jpg', 'portrait', '1', '1', '1', '1', '24', '5', '2012-07-08')
使用这种结构:
image_id - int(11) AUTO_INCREMENT
image_name - varchar(40)
orientation - varchar(4)
restored - tinyint(1)
commercial - tinyint(1)
automotive - tinyint(1)
bespoke - tinyint(1)
before - int(11)
after - int(11)
date_added - date
收到错误消息:
1064 - 您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,以获取在“之前、之后、添加日期”附近使用的正确语法 VALUES ('image4-after.jpg'、'portrait'、'1'、'1'、'1''在第 1 行
谁能告诉我我做错了什么?
谢谢