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?
9625
March 08, 2017 01:43PM
2166
March 08, 2017 01:45PM
1862
March 08, 2017 01:48PM
1735
March 08, 2017 02:38PM
1599
March 08, 2017 02:46PM
1652
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.