Define this as function:
SELECT COUNT(t.techid)
FROM ticket t
WHERE t.techid = $1
Then use this....
SELECT u.idnum, u.username, func(u.idnum)
FROM users u;
--------------------------------------------------------------
The reboots are for hardware upgrades!
"http://www.nmmm.nu; <nmmm@nmmm.nu>
----- Original Message -----
From: Tom Lane <tgl@sss.pgh.pa.us>
To: Lars <lars@sscsinc.com>
Cc: <pgsql-sql@postgreSQL.org>
Sent: вторник, Февруари 08, 2000 05:33
Subject: Re: [SQL] SubSelect as a column
> Lars <lars@sscsinc.com> writes:
> > I am trying to use a subselect as a column name, but it appears as if
this
> > is not supported in Postgresql. Here is the query:
>
> > SELECT u.idnum, u.username,
> > (SELECT COUNT(t.techid)
> > FROM ticket t
> > WHERE t.techid = u.idnum)
> > FROM users u;
>
> Nope, doesn't work in 6.5.*. It is there in current sources for the
> upcoming 7.0 release. Can't think of any good workaround in 6.5...
>
> regards, tom lane
>
> ************