CHECK: This constraint is used for specifying range of values for a particular column of a table. When this constraint is being set on a column, it ensures that the specified column must have the value falling in the specified range. CREATE TABLE STUDENT( ROLL_NO   INT  NOT NULL CHECK(ROLL_NO >1000) , STU_NAME VARCHAR (35)  NOT NULL, STU_AGE INT  NOT NULL, EXAM_FEE INT DEFAULT 10000, STU_ADDRESS VARCHAR (35) , PRIMARY KEY (ROLL_NO) ); - Study24x7
Social learning Network

Warning: include(./views/auth.php): failed to open stream: Permission denied in /var/www/html/live/loginRightSlider.php on line 18

Warning: include(): Failed opening './views/auth.php' for inclusion (include_path='.:/usr/share/php') in /var/www/html/live/loginRightSlider.php on line 18
56 followers study24x7 16 Mar 2019 03:15 PM study24x7 study24x7

CHECK:
This constraint is used for specifying range of values for a particular column of a table. When this constraint is being set on a column, it ensures that the specified column must have the value falling in the specified range.
CREATE TABLE STUDENT( ROLL_NO ...

See more

study24x7
Write a comment
Related Questions
500+   more Questions to answer
Most Related Articles