Direction: Choose the correct option
Q1.
ALTER TABLE employees ADD CONSTRAINT chk_salary CHECK (salary > 0);What is 'chk_salary'?Direction: Choose the correct option
Q2.
Can a table have multiple CHECK constraints?
Direction: Choose the correct option
Q3.
What happens when you try to insert NULL into a NOT NULL column?
Direction: Choose the correct option
Q4.
How do you drop a constraint?
Direction: Choose the correct option
Q5.
CREATE TABLE users (
email VARCHAR(100) UNIQUE
);What happens with duplicate emails?