Answers for "sql database column values restrict"

SQL
0

sql database column values restrict

/// retrict column name rptIntervalUnit to just accept the ff values (Minutes,Days and Hours)
ALTER TABLE REPORTMODULES
ADD CONSTRAINT CK_INTERVALUNIT CHECK (rptIntervalUnit IN('Minutes','Days','Hours'))
Posted by: Guest on April-07-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language