这样的语句可以放在存储过程里
declare @id int
insert into table1 (name,password) values (...)
set @id=@@identity --取到刚插入的id
insert into table2 (age,sex,userid) values (...@id)
其实这样就可以了。如果你担心两个表的数据不同步,比如可能插入了table1后,但是出错了,表1有数据但表2没有,你可以把这2条语句放一个事务里。
insert into AA (id1,name,password,id2,age,sex)
select (a.id,a.name,a.password ,b.id,b.age,b.sex from user表1 a ,user表2 b where a.id =b.Userid)
先在表一中插入数据,再在表2中插入数据:
表2的userid的值必须时在表1中存在的ID值
你用一下连接 ,先把两张表连接接起来,再执行插入