Answers for "how to permit only a few values in dbms"

0

how to permit only a few values in dbms

ALTER TABLE [TableName] ADD CONSTRAINT 
my_constraint CHECK (PatientType = 'Admitted' OR PatientType = 'OPD')
Posted by: Guest on August-15-2020

Code answers related to "how to permit only a few values in dbms"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language