SQL - Table Constraints
Consider the table
orders(order_id INT PRIMARY KEY, quantity INT NOT NULL CHECK (quantity > 0)). What happens if you insert (101, NULL)?