我的这个存储过程 出错了,提示必须含storedprocedure
insert into 设备购置进厂验收单(合同编号,设备名称)
select 合同编号,产品名称 from 设备采购合同表 where 领导审核=1 order by ID desc
我的这个新建存储过程 出错了,提示必须含storedprocedure
------解决方案--------------------CREATE PROCEDURE [OWNER].[PROCEDURE NAME] AS
insert into 设备购置进厂验收单(合同编号,设备名称)
select 合同编号,产品名称 from 设备采购合同表 where 领导审核=1 order by ID desc