有三张表,A表有B表和C表的外键,怎么像A表大批量插入数据?顺便问下  一段sql语句里游标可以有几个?假设:A结构
table userinfos(
    usid int primary key,
    username varchar(50) not null
)
B结构
table powers(
     powid int primary key,
     powname varchar(50) not null

C结构
table exp(
    expid int primary key,
    expname varchar(50) not null,
    usid int not null,
    powid int not null
 )