如何在执行 SQL 任务中使用 IF 语句来创建临时表?
在我的执行 SQL 任务中,我使用以下命令创建临时表:
CREATE TABLE [tempdb].dbo.##temptable (Header VARCHAR(200), Value VARCHAR(200))
但我需要添加 if 条件,如 if(temp table is存在删除它并再次创建新的。)
我该怎么做?
In my Execute SQL task I'm creating temp table with :
CREATE TABLE [tempdb].dbo.##temptable (Header VARCHAR(200), Value VARCHAR(200))
but i need to put if condition like if(temp table is exist drop it and again create new one.)
How can i do this??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
执行 SQL 任务中的 SQL 语句如下:
屏幕截图:
#1:
#2:
The SQL statement in the Execute SQL Task would be as following:
Screenshots:
#1:
#2: