4

我正在尝试插入以下值

('PA', 'Hilda Blainwood', 3, 10.7, 4308.20, '9/8/1974', '9:00', '07/03/1996 10:30:00');

进入具有以下结构的表所有类型

create table alltypes( state CHAR(2), name CHAR(30), children INTEGER, distance FLOAT,
budget NUMERIC(16,2), checkin TIME, started TIMESTAMP);

弹出以下错误

test=# insert into alltypes VALUES('PA', 'Hilda Blainwood', 3, 10.7, 4308.20, '9/8/1974',
'9:00', '07/03/1996 10:30:00');
ERROR:  INSERT has more expressions than target columns
LINE 1: ...Blainwood', 3, 10.7, 4308.20, '9/8/1974', '9:00', '07/03/199...
4

1 回答 1

5

该错误消息非常不言自明:您正在尝试插入更多表具有列的值。您的表有七列,但您的 VALUES 表达式有八个值。

顺便说一句,您应该在插入时始终指定列:

insert into alltypes (state, name, children, distance, budget, checkin, started)
values (...)
于 2012-09-12T04:09:38.740 回答