问题与Postgres

时间:2016-10-13 02:10:59

标签: sql postgresql

我的架构看起来像这样:

CREATE TABLE products (
  id serial primary key not null,
  name varchar(320),
  description varchar(200),
  price numeric(10,2),
  type varchar(20),
  imageurl text
);

我正试图插入产品:

INSERT INTO products (name, description, price, type, imageurl)
VALUES (‘Xbox One S’, ‘500GB System plus Halo 5’, 299.99, ‘xbox’, ‘http://www.gamestop.com/common/images/lbox/127716b2.jpg’);

但我一直收到这个错误:

  

错误:“One”或附近的语法错误

我不确定为什么,它对我来说是正确的。有人知道我为什么会收到错误吗?

0 个答案:

没有答案