Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Union query: Add a constant value to a recordset
On 21 Dec, 10:25, Thomas Kellerer <YQDHXVLMU..._at_spammotel.com> wrote:
> Chaihana Joe, 21.12.2007 11:14:
>
> > Oracle noob here.
>
> > I need to add the value 'All' to a single column resultset. In MS SQL
> > Server I'd say
>
> > SELECT Sub_Asset_Class
> > FROM BIRT_Resp_Fin_Hierarchy_DIM
> > UNION SELECT ' All'
> > ORDER BY Sub_Asset_Class
>
> > What's the equivalent in Oracle SQL?
>
> SELECT Sub_Asset_Class
> FROM BIRT_Resp_Fin_Hierarchy_DIM
> UNION SELECT ' All' FROM DUAL
> ORDER BY 1
>
> Thomas
That worked a treat. Thanks Thomas. Received on Fri Dec 21 2007 - 04:38:22 CST
![]() |
![]() |