gpt4 book ai didi

mysql - 我正在尝试在 SQL 中正确使用插入查询

转载 作者:太空宇宙 更新时间:2023-11-03 11:22:32 25 4
gpt4 key购买 nike

我已经尝试了大约一个小时来让这个插入标签的工作正常进行。问题是我需要在没有图片列和自动递增的客户 ID 的情况下将客户插入到客户表中。我到目前为止是这样的:

INSERT INTO customers (first_name, last_name, mi, nickname, company_name, title, address, city, region, postal_code, country, phone, fax, e-mail, test) 
VALUES('Tweedle', 'Dee', 'D', 'Twee', 'Shirts Emporium', 'Manager', '2448 Peanut Ave.', 'Dallas','Texas', 75001, 'USA', 2145545545, 2145565565, 'tweedledee221@stories.com', 'Val1')

我所说的不起作用的意思是它在第 1 行有一个我无法弄清楚的错误。

最佳答案

mysql 不喜欢你的专栏e-mail

使用

INSERT INTO customers (first_name, last_name, mi, nickname
, company_name, title, address, city, region, postal_code
, country, phone, fax, `e-mail`, test)
VALUES('Tweedle', 'Dee', 'D', 'Twee', 'Shirts Emporium'
, 'Manager', '2448 Peanut Ave.', 'Dallas','Texas', 75001
, 'USA', 2145545545, 2145565565, 'tweedledee221@stories.com', 'Val1')

关于mysql - 我正在尝试在 SQL 中正确使用插入查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58159860/

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