home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!usc!rpi!batcomputer!munnari.oz.au!manuel!sserve!hhcs.gov.au!pihlab
- From: pihlab@hhcs.gov.au
- Newsgroups: comp.databases.oracle
- Subject: Re: Forms3 LOV
- Message-ID: <1992Sep7.095115.352@hhcs.gov.au>
- Date: 7 Sep 92 09:51:14 +1000
- References: <715541236snx@socrates.demon.co.uk>
- Distribution: world
- Organization: Aust. Dept. Health, Housing and Community Services
- Lines: 27
-
- >
- > SELECT 'Y', 'N'
- > INTO :my_field
- > FROM system.dual
-
-
- Hmmm.... Try a UNION statement to get the two items as separate rows rather
- than as seperate columns.
-
- Something like:
-
- SELECT 'Y' FROM dual
- UNION
- SELECT 'N' FROM dual;
-
-
- --
-
- Bruce... pihlab@hhcs.gov.au
- ^^
- *******************************************************************
- * Bruce Pihlamae -- Database Administration *
- * Commonwealth Department of Health, Housing & Community Services *
- * Canberra, Australia (W) 06-289-7056 *
- *******************************************************************
- * These are my own thoughts and opinions, few that I have. *
- *******************************************************************
-