Sybase 临时表:
建表以前的判断语句:
if exists (select 1 from sysobjects where id = object_id('*******') and type = 'U')
drop table ********
go
- ASE会话之间共享,数据和表结构一直存在于tempdb中,直到被drop。
Create table tempd..test
(col_1 int,
col_2 int,
col_3 int,
)
go
Create index idx_ test on tempd..test(col_1)
Go
使用:select * from tempd..test
2.只能有当前会话或过程访问的。当会话断开以后表自动drop,会话存在期间表和数据一直存在。
Create table #test
(col_1 int,
col_2 int,
col_3 int,
)
go
Create index idx_ test on #test(col_1)
Go
使用:select * from #test
Oracle临时表:
临时表中的数据只对当前Session有效,每个Session都有自己的临时数据,并且不能访问其它Session的临时表中的数据。因此,临时表不需要DML锁.当一个会话结束(用户正常退出 用户不正常退出 ORACLE实例崩溃)或者一个事务结束的时候,Oracle对这个会话的表执行 TRUNCATE 语句清空临时表数据.但不会清空其它会话临时表中的数据。你可以索引临时表和在临时表基础上建立视图.同样,建立在临时表上的索引也是临时的,也是只对当前会话或者事务有效。临时表可以拥有触发器.
会话级临时表:会话级临时表是指临时表中的数据只在会话生命周期之中存在,当用户退出,会话结束的时候,Oracle自动清除临时表中数据。
CREATE GLOBAL TEMPORARY TABLE admin_work_area
(startdate DATE,
enddate DATE,
class CHAR(20)) ON COMMIT PRESERVE ROWS;
事务级临时表:事务级临时表是指临时表中的数据只在事务生命周期中存在。当一个事务结束(commit or rollback),Oracle自动清除临时表中数据。
CREATE GLOBAL TEMPORARY TABLE admin_work_area
(startdate DATE,
enddate DATE,
class CHAR(20)) ON COMMIT DELETE ROWS;
使用:Select * from admin_work_area
Sqllite临时表:
判断是否存在临时表并删除:drop table if exists temp_table
所建立的表仅在当前数据库连接可见,并在断开连接时自动被删除。在临时表上建立的任何索引也是临时的。临时表和索引单独存储在与主数据库文件不同的文件中。
Create temporary table temp_table
(col_1 int,
col_2 int,
col_3 int,
)
Create index idx_temp on temp_table(col_1)
使用:Select * from temp_table
会话级别的临时表不能使用:sqlldr bcp 等方法导入导出数据。