USE [growup]
GO

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

ALTER PROCEDURE [dbo].[S_CheckMatterIntoMatterClass] 
    @matterid uniqueidentifier


AS
insert into S_MatterClass(S_MatterId,S_MatterName,S_BigClass,S_SmallClass,S_ParentId) 
select newid(),S_MatterName,S_BigClass,S_SmallClass,S_ParentId
from S_Matter 
where S_MatterId=@matterid and CheckId='1'
RETURN 0

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-15
  • 2022-12-23
  • 2022-12-23
  • 2022-03-10
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-08
  • 2021-05-26
  • 2022-12-23
  • 2021-11-16
相关资源
相似解决方案