SQL Server 如何删除临时表
答案:2 悬赏:10 手机版
解决时间 2021-03-08 10:09
- 提问者网友:藍了天白赴美
- 2021-03-08 04:40
谢谢 !
最佳答案
- 五星知识达人网友:鱼忧
- 2021-03-08 06:02
delete from tablename
全部回答
- 1楼网友:刀戟声无边
- 2021-03-08 06:34
在sql server中临时表也没有什么不同的,只是在表名前加上#就okl:
if object_id('tempdb..#temprounting') is not null drop table #temprounting
create table #temprounting ( a nvarchar(50) not null,
b nvarchar(10) not null,
c nvarchar(10) not null
)
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯