‎2008 Mar 19 8:24 AM
Hi,
I do this statement and its not working,
what is the way to delete table when subty ne the nuber in brackets?
DELETE t_4000 WHERE subty NOT IN ( 01 , 12 , 11, 16 , 17 , 29).
Regards
‎2008 Mar 19 8:44 AM
Hi
try like this
DELETE t_4000 WHERE subty ne ' 01' and
subty ne '12' and
subty ne '11' and
subty ne '16' and
subty ne '17' and
subty ne '29' ).
Hope it would help you.
Regards,
Venkatram
‎2008 Mar 19 8:28 AM
HI,
try like dis.......
DELETE t_4000 WHERE subty NOT IN ('0001','0012','0011','0016','0017','0029').
‎2008 Mar 19 8:33 AM
Hi Jose
i try like u write and i get error :
Field "('0001','0012','0011','0016','0017','0029')" is unknown. It is
neither in one of the specified tables nor defined by a "DATA"
statement.
‎2008 Mar 19 8:39 AM
‎2008 Mar 19 8:46 AM
Hi,
Seems Where not in ('.....) is allowed only with SELECT statement
code like below...
DELETE t_4000 WHERE ( subty NE '0001'
or subty NE '0012'
or subty NE '0011'
or subty NE '0016'
or subty NE '0017'
or subty NE '0029' ).Cheers,
jose.
Edited by: Jose on Mar 19, 2008 9:47 AM
‎2008 Mar 19 8:29 AM
Hi,
Check this....
DELETE t_4000 WHERE subty NOT IN ( '01' , '12' , '11', '16' , '17' , '29').
Reward points if useful....
Regards
AK
‎2008 Mar 19 8:43 AM
‎2008 Mar 19 8:44 AM
Hi
try like this
DELETE t_4000 WHERE subty ne ' 01' and
subty ne '12' and
subty ne '11' and
subty ne '16' and
subty ne '17' and
subty ne '29' ).
Hope it would help you.
Regards,
Venkatram