欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SQL创建临时表

程序员文章站 2023-11-11 12:53:10
创建临时表 方法一: create table #临时表名(字段1 约束条件, 字段2 约束条件, …..) create table ##临时表名(字段1 约束条件, 字段2 约束条...

创建临时表

方法一:

create table #临时表名(字段1 约束条件,

字段2 约束条件,

…..)

create table ##临时表名(字段1 约束条件,

字段2 约束条件,

…..)

方法二:

select * into #临时表名 from 你的表;

select * into ##临时表名 from 你的表;

注:以上的#代表局部临时表,##代表全局临时表

查询临时表

select * from #临时表名;

select * from ##临时表名;

删除临时表

drop table #临时表名;

drop table ##临时表名;

sql server临时表的使用