Odd error message: insert into...select from ...

Поиск
Список
Период
Сортировка
От The Hermit Hacker
Тема Odd error message: insert into...select from ...
Дата
Msg-id Pine.BSF.4.05.9902160211120.10449-100000@thelab.hub.org
обсуждение исходный текст
Список pgsql-hackers
This is in v6.4 ...

surveys=> create table systems (
surveys-> operating_system text,
surveys-> count int4 );
CREATE
surveys=> insert into systems 
surveys-> select sys_type,count(sys_type)
surveys-> from op_sys
surveys-> where sys_type is not null
surveys-> group by sys_type;
ERROR:  insert: more expressions than target columns
surveys=> \d systems

Table    = systems
+----------------------------------+----------------------------------+-------+
|              Field               |              Type                | Length|
+----------------------------------+----------------------------------+-------+
| operating_system                 | text                             |   var |
| count                            | int4                             |     4 |
+----------------------------------+----------------------------------+-------+


Marc G. Fournier                                
Systems Administrator @ hub.org 
primary: scrappy@hub.org           secondary: scrappy@{freebsd|postgresql}.org 



В списке pgsql-hackers по дате отправления:

Предыдущее
От: "Ken Mort"
Дата:
Сообщение: 8K block limit
Следующее
От: The Hermit Hacker
Дата:
Сообщение: Might already be fixed...?