2013年11月26日
摘要: if exists (select * from sysobjects where name='proc_menu_delete')drop proc proc_menu_deletegocreate proc proc_menu_delete(@id int)as declare @count int,@tmpid intselect @count=count(1) from Menu where Id=@idif(@count>0)begin declare ar_cursor cursor local for select id from menu where pi 阅读全文
posted @ 2013-11-26 22:51 朝着 阅读(322) 评论(0) 推荐(0)