Re: UPDATE query based on a SELECT command.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: JORGE MALDONADO <jorgemal1960(at)gmail(dot)com>
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: UPDATE query based on a SELECT command.
Date: 2012-01-28 19:12:44
Message-ID: 26560.1327777964@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

JORGE MALDONADO <jorgemal1960(at)gmail(dot)com> writes:
> Let's suppose that I have an UPDATE query which includes a SELECT as part
> of it as follows:

> UPDATE table1
> SET field1 = (SELECT fieldx FROM table2 WHERE .........)

> What happens if the result of the SELECT command does not return any row?

A scalar subquery that returns no rows has a result of NULL. This is
not specific to whether it's used in UPDATE. See
http://www.postgresql.org/docs/9.1/static/sql-expressions.html#SQL-SYNTAX-SCALAR-SUBQUERIES

regards, tom lane

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Craig Boyd 2012-01-28 19:16:44 Re: PostgreSQL v8 & v9 on the same XP machine - SOLVED
Previous Message JORGE MALDONADO 2012-01-28 18:54:30 UPDATE query based on a SELECT command.