可以啊,建议你用触发器。比如在Table1中:Create Trigger AutoInsertFor InsertAs insert into Table2 values(1,2)然后你只要执行:insert into Table1 values(1,2)那么自动启用触发机制,自然Table2中也有了。