hi
CREATE TABLE table1(
EmpId INT,
DeptId INT,
DeptName VARCHAR(30),
EmployeeName VARCHAR(30)
)
CREATE TABLE table2(
EmpId INT,
DeptId INT,
DeptName VARCHAR(30),
EmployeeName VARCHAR(30)
)
--- I have 2 tables when i Insert Table2 i need raise the trigger automatic insert table1
-- when i have insert table1 i need raise the trigger automatic insert table2
Mark as Answer if its helpful to you
Kumaraspcode2009@gmail.com