Prevent Insert With Trigger - How is it done?
Here is the trigger:
CREATE TRIGGER addressbook_upd_check BEFORE UPDATE ON addressbook
FOR EACH ROW
BEGIN
IF NEW.counselName = SUBSTRING(NEW.counselName,1,6) = 'Select' THEN
SIGNAL SQLSTATE '45000';
END IF;
END;
I then do this: INSERT INTO addressbook (counselName) values ('Select');
It adds the value to the table. How do I prevent the adding of the value to the table? I want to reject the value as if the INSERT statement was never issued.
Subject
Views
Written By
Posted
Prevent Insert With Trigger - How is it done?
9776
March 08, 2017 01:43PM
2205
March 08, 2017 01:45PM
1906
March 08, 2017 01:48PM
1776
March 08, 2017 02:38PM
1639
March 08, 2017 02:46PM
1693
March 08, 2017 02:55PM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.