Re: Sub:column "" is of type bigint but expression is of type character varying - Mailing list pgsql-general

From Adrian Klaver
Subject Re: Sub:column "" is of type bigint but expression is of type character varying
Date
Msg-id acfd5710-933b-29ee-3490-fd694d7ad083@aklaver.com
Whole thread Raw
In response to Sub:column "" is of type bigint but expression is of type character varying  (Rama Krishnan <raghuldrag@gmail.com>)
List pgsql-general
On 8/17/22 01:53, Rama Krishnan wrote:
> Hi All,
> 

> 
> i have purged the old data from orginal table when i am restoring the 
> data from archive table into orignal table i am getting the error
> 
> 
> *insert into tickets select * from tickets_archive;*

The above depends on:

https://www.postgresql.org/docs/current/sql-insert.html

"The target column names can be listed in any order. If no list of 
column names is given at all, the default is all the columns of the 
table in their declared order; or the first N column names, if there are 
only N columns supplied by the VALUES clause or query. The values 
supplied by the VALUES clause or query are associated with the explicit 
or implicit column list left-to-right.
"

If this is not the case then you can get mismatched columns where a 
varchar value is being inserted into an integer field. Verify that the 
table column order is the same for both tables.



> 
> 
>   column "*ticket_purchase_no*" is of type bigint but expression is of 
> type character varying
> Regards
> 
> A.Rama Krishnan


-- 
Adrian Klaver
adrian.klaver@aklaver.com



pgsql-general by date:

Previous
From: Thomas Kellerer
Date:
Subject: Re: Postgres question
Next
From: "David G. Johnston"
Date:
Subject: Re: Sub:column "" is of type bigint but expression is of type character varying