Re: Subqueries in Non-SELECT Queries

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Frank Joerdens <frank(at)joerdens(dot)de>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Subqueries in Non-SELECT Queries
Date: 2000-12-17 18:43:28
Message-ID: 21194.977078608@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Frank Joerdens <frank(at)joerdens(dot)de> writes:
> mpi=# update index set level = 2 where parentid = ( select id from
> index where level = 1 );
> ERROR: More than one tuple returned by a subselect used as an expression.

Apparently the subquery "select id from index where level = 1" is
returning more than one row. Perhaps you want WHERE parentid IN subselect
rather than WHERE parentid = subselect. "=" is a scalar operator, not
a set operator.

regards, tom lane

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Mathijs Brands 2000-12-17 20:51:18 PostgreSQL crashes on me :(
Previous Message Christof Glaser 2000-12-17 18:32:50 Re: Subqueries in Non-SELECT Queries