Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: SQL question

Re: SQL question

From: Doug Coan <dcoan_at_aegonusa.com>
Date: Fri, 15 Sep 2000 20:07:54 GMT
Message-ID: <8ptvi8$jt8$1@nnrp1.deja.com>

In article <8ptroc$f55$1_at_nnrp1.deja.com>,   newyorkdoll_at_my-deja.com wrote:
> Hi,
>
> I need to drop several rows in <table> where the field 'name' is set
 to
> certain values. I'm currently using a drop statement for each field
> value. Does Oracle sqlplus allow more than one field value to be
> specfied in a single command? ie.
>
> SQL>delete from <table>
> where name='X' or name='Y' or name='Z'
>
> ?
>
> Thankyou.
>
> Sent via Deja.com http://www.deja.com/
> Before you buy.
>

that will work. Or

where name in ('x','y','z');

will work.

--
Doug Coan
Oracle Certified Professional DBA


Sent via Deja.com http://www.deja.com/
Before you buy.
Received on Fri Sep 15 2000 - 15:07:54 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US