Explain the Check Clause
The CHECK clause is employed to at the end of a CREATE TABLE statement specify table constraints. This is known as table-based constraint because it applies to every tuple individually and is checked when a tuple is inserted or modified.
The CHECK clause can as well be used to fixed more general constraints by using the CREATE ASSERTION statement of SQL.