两个表的插入在同一个存储过程
--订单号(插入一张编号为“c1”订单)
insert into ProcureIndentInfo(POrderNo) select 'c1'
--订单明细(多条语句)(为这张订单加明细)订单明细与订单之间是用自动编号<pid>来联系的。
insert into ProcureIndentDetailinfo(pid,price) select (select pid from ProcureIndentinfo where POrderNo='c1'),10.00
insert into ProcureIndentDetailinfo(pid,price) select (select pid from ProcureIndentinfo where POrderNo='c1'),10.00
--其中(select pid from ProcureIndentinfo where POrderNo='c')多次使用让效率低,该定义一个什么来接收此查询的结果