创建基本sql表时出错

时间:2012-09-28 02:26:28

标签: sql

以下是我用来创建表的代码:

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'."

有什么想法吗?

2 个答案:

答案 0 :(得分:1)

它是VALUES而不是VALUE

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

答案 1 :(得分:1)

在查询中使用VALUES

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