Answers for "how to apply check in sql"

SQL
-1

sql check

Adds a constraint that limits the value which can be added to a column.
Example 1 (MySQL): Makes sure any users added to the users table are 18
or over.
CREATE TABLE users (
first_name varchar(255),
age int,
CHECK (age>=18)
);
Example 2 (MySQL): Adds a check after the table has already been
created.
ALTER TABLE users
ADD CHECK (age>=18);
Posted by: Guest on January-07-2021

Code answers related to "how to apply check in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language