同步表中数据的问题。。。两个表A,B A中有数据列名为id(自增减的)a,b,cB中有数据列名为id(自增减的)a,x,y怎样实现A表中的数据在增加的时候,B表中的a同时自动增加呢?[解决办法]create trigger ins on afor insertas insert into b (a,x,y) select a,b,c from insertedgo