Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Always return at least one value
Yeah. I was hoping I could avoid that additional select to check the existence of the character in the table. With all the new functions that keep popping up in Oracle SQL, I was hoping maybe there was one that was like: If no rows then return this thing, otherwise give me the rows.
> -----Original Message-----
>
> How about this:
> select field from table where field='LITERAL'
> union all
> select '-' from dual
> where not exists(select field from table where field='LITERAL');
>
> I think that ought to do it....
>
> -Mark
>
-- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html -----------------------------------------------------------------Received on Fri Mar 19 2004 - 10:41:58 CST
![]() |
![]() |