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
solved PL/SQL Triggers -firing question3
 
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
solved PL/SQL Triggers -firing question3