How to execute sub query in if exists condition?

2019-05-23 22:45发布

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

标签: sql subquery
2条回答
趁早两清
2楼-- · 2019-05-23 23:19
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)
查看更多
不美不萌又怎样
3楼-- · 2019-05-23 23:28

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
查看更多
登录 后发表回答