Does MySQL support check constraint? [duplicate]
Asked Answered
H

2

5

Does MySQL support check constraint?

I am able to execute the following script in MySQL without error.

ALTER TABLE  EMP_DB_DESIGN_EXCEL  ADD (
   CONSTRAINT CHK_EMP_IS_ACTIVE CHECK (IS_ACTIVE IN ('Y','N')));

But it is not reflected if I query:

 SELECT * FROM information_schema.TABLE_CONSTRAINTS T where t.table_name='EMP_DB_DESIGN_EXCEL';
Harty answered 5/8, 2010 at 11:58 Comment(0)
L
6

So far as I can tell from past usage and the manual, MySQL only supports PRIMARY KEY, UNIQUE and FOREIGN KEY constraints, and these only if the table is an InnoDB table. Other storage types accept these constraints and store them after a fashion but do not enforce them. The kind of constraint you mention is not enforced; there appears to be some discussion on the MySQL website about it.

Loss answered 5/8, 2010 at 12:5 Comment(0)
E
2

It is really frustrating not being able to enforce rules you want on your tables, rows and columns. The numbers of Engines for tables also doesn't make things easier. CHECK, TRANSACTION, FULLTEXT INDEX, FOREIGN KEY etc missing in some engines and present in some engines

Exceedingly answered 24/5, 2012 at 13:18 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.