up vote 0 down vote favorite
share [g+] share [fb]

like:

create table test(
    score integer unsigned between 1 and 100
...
);

Is it possible to do this in MySQL?

link|improve this question

44% accept rate
feedback

2 Answers

up vote 0 down vote accepted

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

link|improve this answer
Mysql doesn't support CHECK Constraint – Svetlozar Angelov Nov 25 '09 at 10:12
It will parse it and you will think it is legal, but it won't enfoce it – Svetlozar Angelov Nov 25 '09 at 10:17
feedback

Mysql doesn't support CHECK constraints

You can create BEFORE UPDATE/INSERT TRIGGER with RAISE ERROR

EDIT: Raise Error with

SET new.score = 1 / 0;

Something like that:

CREATE TRIGGER testref BEFORE INSERT ON test1
  FOR EACH ROW BEGIN
    IF  NEW.score < 1 OR NEW.score > 100
              SET NEW.score = 1 / 0; 
  END;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.