30 lines
833 B
MySQL
30 lines
833 B
MySQL
|
SET ANSI_NULLS ON
|
||
|
GO
|
||
|
SET QUOTED_IDENTIFIER ON
|
||
|
GO
|
||
|
Drop PROCEDURE Proc_DeleteUsers
|
||
|
GO
|
||
|
-- =============================================
|
||
|
-- Author: Argo Zhang
|
||
|
-- Create date: 2016-09-06
|
||
|
-- Description:
|
||
|
-- =============================================
|
||
|
Create PROCEDURE Proc_DeleteUsers
|
||
|
-- Add the parameters for the stored procedure here
|
||
|
@ids varchar(max)
|
||
|
WITH ENCRYPTION
|
||
|
AS
|
||
|
BEGIN
|
||
|
-- SET NOCOUNT ON added to prevent extra result sets from
|
||
|
-- interfering with SELECT statements.
|
||
|
SET NOCOUNT ON;
|
||
|
SET XACT_ABORT ON;
|
||
|
-- Insert statements for procedure here
|
||
|
declare @sql varchar(max)
|
||
|
set @sql = 'Delete from UserRole where UserID in (' + @ids + ');'
|
||
|
set @sql += 'delete from UserGroup where UserID in (' + @ids + ');'
|
||
|
set @sql += 'delete from Users where ID in (' + @ids + ');'
|
||
|
exec(@sql)
|
||
|
END
|
||
|
GO
|