首页 > 代码库 > 万能的存储过程
万能的存储过程
---------------------------------------------------------------存储过程的功能:对表 Category 进行添加、更新、删除操作。---------------------------------------------------------------参数说明:-------------------------------------------------------------/*@DataAction 添加更新删除的标志位@c_id 自增ID@c_type 类别 @c_title 类别标题 @parent_id 父类别ID */ CREATE PROCEDURE [dbo].[CreateUpdateDelete_CategoryEntity] @DataAction int, @c_id int = 0, @c_type int, @c_title nvarchar(100), @parent_id intAS if @DataAction=0begin insert into Category ( [c_type], [c_title], [parent_id] ) values ( @c_type, @c_title, @parent_id ) set @c_id=scope_identity()endif @DataAction=1begin UPDATE [Category] SET [c_type] = @c_type, [c_title] = @c_title, [parent_id] = @parent_id WHERE [c_id] = @c_idendif @DataAction=2begin delete from [Category] where [c_id] = @c_idendselect @c_idGO
万能的存储过程
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。