Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: SQL question
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
![]() |
![]() |