Is Not In Oracle Query?
Is Not In Oracle Query? The Oracle NOT condition can be combined with the IN condition. For example: SELECT * FROM customers WHERE customer_name NOT IN ( ‘IBM’, ‘Hewlett Packard‘, ‘Microsoft’ ); This Oracle NOT example would return all rows from the customers table where the customer_name is not IBM, Hewlett Packard, or Microsoft. How