Re: large object unlinking

From: Michael Fuhr <mike(at)fuhr(dot)org>
To: sandhya <sandhyar(at)amiindia(dot)co(dot)in>
Cc: Postgres <pgsql-admin(at)postgresql(dot)org>
Subject: Re: large object unlinking
Date: 2006-02-24 07:14:28
Message-ID: 20060224071428.GA78523@winnie.fuhr.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

On Fri, Feb 24, 2006 at 11:57:57AM +0530, sandhya wrote:
> In select lo_unlink(objid) from (select distinct objid from filetbl)AS s;
> the above query what is that 'S' stands for in AS 'S'

"s" is a table alias, which is required for a subquery. The choice
of "s" is arbitrary; it can be any valid label.

http://www.postgresql.org/docs/8.1/interactive/queries-table-expressions.html#QUERIES-SUBQUERIES

--
Michael Fuhr

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message sandhya 2006-02-24 14:31:34 Multiplequeries
Previous Message sandhya 2006-02-24 06:27:57 Re: large object unlinking