[Solved] PL/SQL Triggers -firing question3
[ad_1] Try this…. for trigger CREATE TRIGGER insert_book ON [dbo].[Books] FOR INSERT AS insert into books (id_book,title) values(12,’book12′); PRINT ‘Insert Book’ GO 6 [ad_2] solved PL/SQL Triggers -firing question3