Igor Tandetnik wrote:

Dennis Cote wrote:

But I have to wonder why you suggest creating the temp table at all
when this does the same thing:

delete from source_table
   where id in
       (select id from source_table where some_condition = true);


Or even

delete from source_table
   where some_condition = true;

Igor Tandetnik


Good point.

Reply via email to