I have a table named problem. It has a column name type. I want to limit the user by allowing him to enter only six values. When I write my code, it says that my query has been successfully added by it still isn't working. I can still add values outside my constraints. Any help would be appreciated. Thanks in advance. My code has been given below.
alter table problem
add constraint chk_type check (type in ('adhoc', 'mathematics', 'graph_theory', 'data_structure', 'dynamic_programming', 'computational_geometry'));
types) and enforce a foreign key constraint. You could also use triggers, but I'd rather not go there. – NullUserException♦ Nov 14 '12 at 19:49wouldn't know immediately where to look??? The Manual? Google? Search SO??? – Dems Nov 15 '12 at 8:15