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.
1select 2order_no,3part_no,4base_sale_unit_price56from CustomerOrderLine col78EXCEPTION JOIN Exclude_Customers_Cfv ec9 on ec.cf$_customer_id = col.customer_id1011Where col.contract = 'W'