What is CHECK Constraint?

What is CHECK Constraint?

What is CHECK Constraint?

View Answers

November 19, 2010 at 1:02 PM

Hi,

The CHECK constraint is used to limit the value range that can be placed in a column.The SQL CHECK constraint ensures that all values in a column satisfy certain conditions,If you define a CHECK constraint on a single column it allows only certain values for this column.If you define a CHECK constraint on a table it can limit the values in certain columns based on values in other columns in the row.

CREATE TABLE newitems (
   newitem_num INTEGER CHECK (newitem_num > 10),
   manucode CHAR(3) NOT NULL,
   promotype INTEGER,
   descrip CHAR(20))

thanks.









Related Tutorials/Questions & Answers:
What is the use of CASCADE CONSTRAINTS?
What is CHECK Constraint?
Advertisements
Use of CASCADE CONSTRAINTS
ModuleNotFoundError: No module named 'constraints'
ModuleNotFoundError: No module named 'tox-constraints'
ModuleNotFoundError: No module named 'magic_constraints'
check
ModuleNotFoundError: No module named 'django_database_constraints'
ModuleNotFoundError: No module named 'odoo8-addon-account-constraints'
ModuleNotFoundError: No module named 'openlabs_sale_quantity_constraints'
ModuleNotFoundError: No module named 'django_database_constraints'
ModuleNotFoundError: No module named 'django-db-constraints'
ModuleNotFoundError: No module named 'odoo8-addon-account-constraints'
ModuleNotFoundError: No module named 'tox-constraints-canary'
ModuleNotFoundError: No module named 'django-db-constraints'
check for errors
password check
check anagram
Mysql Check
protractor check if element exists
CHECK THIZ.... - Java Beginners
click on check box
how to insert check box
check box left justification
To check a palindrome number?
ModuleNotFoundError: No module named 'check'
ModuleNotFoundError: No module named 'check-in'
Help for Check availability of user
how to check gremlin version
check box in jsp
check null exception java
check condition in if-else block
Hi Check this.... - Java Beginners
To check the Rotational Strings are Equall or not
HI Jsp check box..!
How to check a checkbox - Struts
Check even or odd number.
How to check if a pid is alive?
How to check spark version
How to check spark version
check if a substring exists in a string
Dynamic check box problem
check youtube iframe code
check box condition
CHECK WHICH NO IS GREATER IN 4 NO'S
What is WAP?
What is Commit?
what is bit
what is hibernate.archive.autodetection
what is hibernate.archive.autodetection

Ads