From: Oliver Dizon <johnoliver(at)rtzassociates(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject:
Date: 2015-01-27 10:46:13
Message-ID: 1567233101.227633.1422355573359.JavaMail.root@mail
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi Guys,

I hope I'm in the right place to throw this. I just want to ask the reason behind this weird scenario.

All records were deleted in a table even if the subquery in the where clause has a missing a column.

--from a certain script where table_id is not yet existing on table_sample

delete from main_table_sample where table_id in (select table_id from table_sample);

Im expecting that postgres will return an ERROR message like
'column "table_id" does not exist on table table_sample'

But it did not returned any error and deleted all the records instead.

Version: psql (8.4.9, server 9.2.5)

Thanks and Regards,
______________________
Oliver G. Dizon
Z Getcare Systems Team
RTZ Associates, Inc.
johnoliver(at)rtzassociates(dot)com

Responses

  • Re: at 2015-01-27 13:18:09 from Albe Laurenz
  • Re: (unknown) at 2015-01-27 13:31:45 from Thomas Kellerer
  • Re: at 2015-01-27 14:52:36 from Tom Lane

Browse pgsql-general by date

  From Date Subject
Next Message Andreas Laggner 2015-01-27 11:42:37 cannot start 9.3 after system crash
Previous Message Tim Uckun 2015-01-27 10:23:32 Re: Postgres seems to use indexes in the wrong order