Re: column "id" is of type integer but expression is of type character - Mailing list pgsql-general

From Richard Huxton
Subject Re: column "id" is of type integer but expression is of type character
Date
Msg-id 49665106.4070102@archonet.com
Whole thread Raw
In response to column "id" is of type integer but expression is of type character  ("Andrus" <kobruleht2@hot.ee>)
Responses Re: column "id" is of type integer but expression is of type character  ("Andrus" <kobruleht2@hot.ee>)
List pgsql-general
Andrus wrote:
> Commands:
>
> create temp table test ( id int, baas char(10) );
> create temp table lisa ( id int, baas char(10) );
> alter table lisa drop column id;
> INSERT INTO test SELECT * FROM lisa;
> drop table lisa;
>
> Cause error
>
> ERROR:  column "id" is of type integer but expression is of type character
> HINT:  You will need to rewrite or cast the expression.

> How to fix ?

Don't use SELECT * - list the columns you want to insert. I can't think
why you would do that (you'll end up with nulls in the id column) but it
will work.

--
  Richard Huxton
  Archonet Ltd

pgsql-general by date:

Previous
From: Alan Hodgson
Date:
Subject: Re: column "id" is of type integer but expression is of type character
Next
From: Tom Lane
Date:
Subject: Re: column "id" is of type integer but expression is of type character