码迷,mamicode.com
首页 > 数据库 > 详细

sql临时表的创建

时间:2015-03-13 20:44:29      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:sql

create table #simple  /*只对当前用户有效,其他用户无法使用,断掉连接后立即销毁该表*/
(
id int not null
)


select * from #simple


create table ##simple  /*对任何前用户有效,断掉连接后立即销毁该表*/
(
id int not null
)


select * from ##simple

sql临时表的创建

标签:sql

原文地址:http://blog.csdn.net/linukey/article/details/44245535

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!