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

table a intercept table b

Former Member
0 Likes
398

hi, i need some help.

example:

from table A column A subtract table B column A

the result showing table a column A's records not in table B column A's records.

is there any method or any select to retrieve it..?

the whole idea must be in dynamic.

1 REPLY 1
Read only

Former Member
0 Likes
341

Friend,

for example,

select * from but000 into table itab where partner not in ( select partner from but020 ).

select * from tableA into table itabA where columnA not in ( select columnA from tableB).