如何为执行存储过程创建if else语句?

时间:2016-09-21 02:33:53

标签: sql sql-server if-statement stored-procedures

如何为执行存储过程创建if else语句?

我试过这个查询

IF exists ( select *,count(*) from [nsqm].[dbo].[Table_1]  
            group by col1,col2,col3,col4 having count(*) = 1 )
   exec insert_table_1;
ELSE 
   PRINT 'no duplicate row';

我有这样的消息错误:

  

无法找到存储过程'insert_table_1'。

我确定存储过程'insert_table_1'存在enter image description here

0 个答案:

没有答案