Skip to content

添加批量提取SQL的支持 #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Wolf1329
Copy link

@Wolf1329 Wolf1329 commented Mar 1, 2019


EXEC sp_executesql N'select * from Wd_Admin where Wt_IsDelete=0 AND Wt_IdUser=@Wt_IdUser and Wt_Password=@Wt_Password',N'@Wt_IdUser nvarchar(4000),@Wt_Password nvarchar(4000)',@Wt_IdUser=N'lelelel',@Wt_Password=N'96e79218965eb72c92a549dd5a330112'
go
exec sp_executesql N'select * from Wd_AdminType where Wt_IsDelete=0 AND wt_id=@fid',N'@fid int',@fid=4
go
exec sp_executesql N'select * from Wd_PartCls where Wt_IsDelete=0 AND Wt_Folder=@Foldername',N'@Foldername nvarchar(4000)',@Foldername=N'Agent'
go
exec sp_executesql N'select * from Wd_AdminRight where Wt_IsDelete=0 AND Wt_ParType=1 and Wt_FID=@fid and Wt_ParId=@Wt_ParId ',N'@fid int,@Wt_ParId int',@fid=4,@Wt_ParId=29182


declare @Wt_IdUser nvarchar(4000),@Wt_Password nvarchar(4000)
set @Wt_IdUser=N'lelelel'
set @Wt_Password=N'96e79218965eb72c92a549dd5a330112'

select * from Wd_Admin where Wt_IsDelete=0 AND Wt_IdUser=@Wt_IdUser and Wt_Password=@Wt_Password

GO
declare @fid int
set @fid=4

select * from Wd_AdminType where Wt_IsDelete=0 AND wt_id=@fid

GO
declare @Foldername nvarchar(4000)
set @Foldername=N'Agent'

select * from Wd_PartCls where Wt_IsDelete=0 AND Wt_Folder=@Foldername

GO
declare @fid int,@Wt_ParId int
set @fid=4
set @Wt_ParId=29182
select * from Wd_AdminRight where Wt_IsDelete=0 AND Wt_ParType=1 and Wt_FID=@fid and Wt_ParId=@Wt_ParId

GO

---------------------------------------------------------------------------------------------
EXEC sp_executesql N'select * from Wd_Admin where Wt_IsDelete=0  AND Wt_IdUser=@Wt_IdUser and Wt_Password=@Wt_Password',N'@Wt_IdUser nvarchar(4000),@Wt_Password nvarchar(4000)',@Wt_IdUser=N'lelelel',@Wt_Password=N'96e79218965eb72c92a549dd5a330112'
go
exec sp_executesql N'select * from Wd_AdminType where Wt_IsDelete=0  AND wt_id=@fid',N'@fid int',@fid=4
go
exec sp_executesql N'select * from Wd_PartCls where Wt_IsDelete=0  AND Wt_Folder=@Foldername',N'@Foldername nvarchar(4000)',@Foldername=N'Agent'
go
exec sp_executesql N'select * from Wd_AdminRight where Wt_IsDelete=0  AND Wt_ParType=1 and Wt_FID=@fid and Wt_ParId=@Wt_ParId ',N'@fid int,@Wt_ParId int',@fid=4,@Wt_ParId=29182

---------------------------------------------------------------------------------------------
declare @Wt_IdUser nvarchar(4000),@Wt_Password nvarchar(4000)
set @Wt_IdUser=N'lelelel'
set @Wt_Password=N'96e79218965eb72c92a549dd5a330112'

select * from Wd_Admin where Wt_IsDelete=0  AND Wt_IdUser=@Wt_IdUser and Wt_Password=@Wt_Password

 GO
declare @fid int
set @fid=4

select * from Wd_AdminType where Wt_IsDelete=0  AND wt_id=@fid

 GO
declare @Foldername nvarchar(4000)
set @Foldername=N'Agent'

select * from Wd_PartCls where Wt_IsDelete=0  AND Wt_Folder=@Foldername

 GO
declare @fid int,@Wt_ParId int
set @fid=4
set @Wt_ParId=29182
select * from Wd_AdminRight where Wt_IsDelete=0  AND Wt_ParType=1 and Wt_FID=@fid and Wt_ParId=@Wt_ParId

 GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants