日期:2014-05-17 浏览次数:20410 次
create proc addOrders (@orderid int, --> 订单号 @customerid int --> 客户编号 ) as begin set nocount on insert into 订单表(订单号,客户编号,目的地) select @orderid,@customerid,单位地址 from 客户表 where 客户编号=@customerid end