服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - Sql Server - Sql Server临时表和游标的使用小结

Sql Server临时表和游标的使用小结

2020-05-20 15:27mdxy-dxy Sql Server

这篇文章主要介绍了Sql Server临时表和游标的使用小结,需要的朋友可以参考下

1.临时表

临时表与永久表相似,但临时表存储在 tempdb 中,当不再使用时会自动删除。
临时表有局部和全局两种类型

2者比较:

局部临时表的名称以符号 (#) 打头
仅对当前的用户连接是可见的
当用户实例断开连接时被自动删除
全局临时表的名称以符号 (##) 打头
任何用户都是可见的
当所有引用该表的用户断开连接时被自动删除
实际上局部临时表在tempdb中是有唯一名称的
例如我们用sa登陆一个查询分析器,再用sa登陆另一查询分析器

在2个查询分析器我们都允许下面的语句:

?
1
2
3
use pubs
go
select * into #tem from jobs

分别为2个用户创建了2个局部临时表
我们可以从下面的查询语句可以看到

?
1
2
SELECT * FROM [tempdb].[dbo].[sysobjects]
where xtype='u'

判断临时表的存在性:

?
1
2
3
4
5
6
7
8
if object_id('tempdb..#tem') is not null
begin
 print 'exists'
end
else
begin
 print 'not exists'
end

特别提示:
1。在动态sql语句中创建的局部临时表,在语句运行完毕后就自动删除了
所以下面的语句是得不到结果集的

?
1
2
exec('select * into #tems from jobs')
select * from #tems

2。在存储过程中用到的临时表在过程运行完毕后会自动删除
但是推荐显式删除,这样有利于系统

ii。游标
游标也有局部和全局两种类型
局部游标:只在声明阶段使用
全局游标:可以在声明它们的过程,触发器外部使用

判断存在性:

?
1
2
3
4
5
if CURSOR_STATUS('global','游标名称') =-3 and CURSOR_STATUS('local','游标名称') =-3
begin
 print 'not exists'
end
SELECT * FROM [tempdb].[dbo].[sysobjects] where xtype='u'

判断临时表的存在性:

?
1
2
3
4
5
6
7
8
if object_id('tempdb..#tem') is not null
begin
 print 'exists'
end
else
begin
 print 'not exists'
end

特别提示:
1。在动态sql语句中创建的局部临时表,在语句运行完毕后就自动删除了
所以下面的语句是得不到结果集的

?
1
2
exec('select * into #tems from jobs')
select * from #tems

2。在存储过程中用到的临时表在过程运行完毕后会自动删除
但是推荐显式删除,这样有利于系统

ii。游标
游标也有局部和全局两种类型
局部游标:只在声明阶段使用
全局游标:可以在声明它们的过程,触发器外部使用

判断存在性:

?
1
2
3
4
5
if CURSOR_STATUS('global','游标名称') =-3 and CURSOR_STATUS('local','游标名称') =-3
begin
 print 'not exists'
end
SELECT * FROM [tempdb].[dbo].[sysobjects] where xtype='u'

判断临时表的存在性:

?
1
2
3
4
5
6
7
8
if object_id('tempdb..#tem') is not null
begin
 print 'exists'
end
else
begin
 print 'not exists'
end

特别提示:
1。在动态sql语句中创建的局部临时表,在语句运行完毕后就自动删除了
所以下面的语句是得不到结果集的

?
1
2
exec('select * into #tems from jobs')
select * from #tems

2。在存储过程中用到的临时表在过程运行完毕后会自动删除
但是推荐显式删除,这样有利于系统

ii。游标
游标也有局部和全局两种类型
局部游标:只在声明阶段使用
全局游标:可以在声明它们的过程,触发器外部使用

判断存在性:

?
1
2
3
4
if CURSOR_STATUS('global','游标名称') =-3 and CURSOR_STATUS('local','游标名称') =-3
begin
 print 'not exists'
end

 

延伸 · 阅读

精彩推荐