Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Question reg. 'Select' statement

Former Member
0 Likes
296

I want to retrieve records from lqua table based on the condition that lgtyp should not be equal to 100 or 110 or 120 or 130 or 140. How should I do that in select statement?

Thanks.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
262

Hi,

write query like:

select f1 f2 f3 into corresponding fields of table tbl1

from lqua

where lgtyp not in ('100' , '110' , '120', '130', '140').

Regards

Subramanian

1 REPLY 1
Read only

Former Member
0 Likes
263

Hi,

write query like:

select f1 f2 f3 into corresponding fields of table tbl1

from lqua

where lgtyp not in ('100' , '110' , '120', '130', '140').

Regards

Subramanian