问题
declare @qry varchar(100)
declare @cnt int
set @qry = ' where '
if exists( select * from ARTICLE_MANAGE +@qry+ article_id=65)
BEGIN
select top 1* from ARTICLE_MANAGE order by article_id desc
END
ELSE
BEGIN
select * from ARTICLE_MANAGE order by article_id desc
END
This is the query. '@qry' is changed by what we passed to the query
回答1:
DECLARE @qry VARCHAR(100);
DECLARE @cnt INT;
set @qry = ' where '
DECLARE @ExeQuery VARCHAR(MAX);
SET @ExeQuery='if exists( select * from ARTICLE_MANAGE '+@qry+' article_id=65)
BEGIN
select top 1* from ARTICLE_MANAGE order by article_id desc
END
ELSE
BEGIN
select * from ARTICLE_MANAGE order by article_id desc
END'
EXEC(@ExeQuery)
回答2:
Here you are building a dynamic sql
and EXISTS
limits to only subquery
.
You can have the functionality of EXISTS
with count(*)
declare @qry varchar(100)
declare @cnt int
set @qry = ' where '
declare @sql_qry nvarchar(1000)
set @sql_qry = 'select @Cnt = COUNT(*) from ARTICLE_MANAGE' + @qry + 'article_id=65'
DECLARE @Count AS INT
EXEC sp_executesql @Query, N'@Cnt INT OUTPUT', @Cnt=@Count OUTPUT
if exists(@Count > 0) BEGIN
select top 1* from ARTICLE_MANAGE order by article_id desc
END
ELSE BEGIN
select * from ARTICLE_MANAGE order by article_id desc
END
来源:https://stackoverflow.com/questions/31985175/how-to-execute-sub-query-in-if-exists-condition