I would like to create a trigger for my table table_master.
The table schema of table_master is simple:
master_id INT(11) AUTO_INCREMENT, PRIMARY, NOT NULL
title VARCHAR(50) NOT NULL
And here is another relation table rel_master_another_tbl
master_id INT(11) PRIMARY, NOT NULL
another_id INT(11) PRIMARY, NOT NULL
What I want to achieve is, when a DELETE query is issued on table_master, the trigger will check whether the master_id is used in rel_master_another_tbl . UPDATE: If yes, rollback / cancel the DELETE query.
How can I achieve this?
CREATE TRIGGER check_before_delete BEFORE DELETE ON table_master
// what should I put here?
END;
ON DELETE RESTRICTin this case? Thanks. – Shivan Raptor Dec 20 '12 at 7:27