如何为执行存储过程创建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'。