SQL - Table Constraints
How can you modify the users table to ensure the email column cannot be NULL and has a default value of 'unknown@example.com'?
How can you modify the users table to ensure the email column cannot be NULL and has a default value of 'unknown@example.com'?
ALTER TABLE ... MODIFY column datatype NOT NULL DEFAULT value.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions