SQL - Table Constraints
Consider the table:
What will be the result of:
CREATE TABLE orders (id INT, quantity INT CHECK (quantity > 0));
What will be the result of:
INSERT INTO orders VALUES (1, 0);
