Quick question, on other platforms there’s an EXCEPTION JOIN that is exclude rows from Table A that aren’t in TABLE B. What is the equivalent in Orace/IFS?
We created a custom table of customers to exclude. So when we report on CustomerOrders we only want orders that don’t have a Customer# in Table B.
select 
order_no,
part_no,
base_sale_unit_price
from CustomerOrderLine  col
EXCEPTION JOIN Exclude_Customers_Cfv  ec
   on ec.cf$_customer_id = col.customer_id
Where col.contract = 'W'


 
     
