like:
create table test(
score integer unsigned between 1 and 100
...
);
Is it possible to do this in MySQL?
|
like:
Is it possible to do this in MySQL?
| |||
|
feedback
|
|
In short: MySQL does not support CHECK constraints, although for compatibility with other engines it will parse them (but ignores them). See: http://stackoverflow.com/questions/706231/mysql-and-check-constraints | |||||
feedback
|
|
Mysql doesn't support CHECK constraints You can create BEFORE UPDATE/INSERT TRIGGER with RAISE ERROR EDIT: Raise Error with
Something like that:
| ||||
|
feedback
|