gpt4 book ai didi

sql - 创建基本 sql 表时出错

转载 作者:行者123 更新时间:2023-12-04 21:49:15 24 4
gpt4 key购买 nike

这是我用来创建表格的代码:

CREATE TABLE product
(
ProductID int NOT NULL PRIMARY KEY,
ProductName varchar (50) NOT NULL,
Brand varchar (50) NOT NULL,
Price money NOT NULL,
Quantity int NOT NULL,
DateAdded date NOT NULL
)

这是我要插入的内容:

INSERT INTO product
VALUE (100, 'Radio', 'Sony', 29.99, 30, '2012-08-22')

我得到的错误是:

"Incorrect syntax near 'VALUE'."

有什么想法吗?

最佳答案

在查询中使用 VALUES

INSERT INTO product 
VALUES (100, 'Radio', 'Sony', 29.99, 30, '2012-08-22')

关于sql - 创建基本 sql 表时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12632790/

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