创建基本sql表时出错

创建基本sql表时出错,sql,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 (1

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

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

有什么想法吗?

价值观
而不是
价值观

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

在查询中使用

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

哦我的。上帝我花了一个小时在这上面。非常感谢你。我现在开始向自己的脸开枪。