iam making trigger insert query
CREATE TRIGGER trg_insertZYP_NEW
ON ZYP
AFTER INSERT
AS
BEGIN
INSERT INTO ZYP (zy_id)
VALUES (NEW.zy_id);
END ;
showing error the object ‘ZYP’ does not exist or is invalid for this operation.
i am try this query on sql database
New contributor
Jay parekh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.