‎2009 Sep 11 4:37 PM
Hello,
I want to fetch data from custom table such that field ZNAME of table ZCUSTOM does not contain first three characters as 'OKL' or 'okl' .
How can I do this ?
Please help.
Regards,
Jainam.
‎2009 Sep 11 4:49 PM
Give the statement
select * from zcustom where zcustom-zname = not ( 'okl%' and 'OKL%)'.
This statement should work for you bro.
Regards,
Ankur
‎2009 Sep 11 4:42 PM
Hi
Try to use LIKE option:
select * from ZCUSTOM where not ZNAME like 'OKL%'
and not ZNAME like.'okl%'
ENDSELECT.
Max
‎2009 Sep 11 4:46 PM
‎2009 Sep 11 4:49 PM
Give the statement
select * from zcustom where zcustom-zname = not ( 'okl%' and 'OKL%)'.
This statement should work for you bro.
Regards,
Ankur