临时表在SQL数据库和MySql 中创建的方法_SQL SERVER数据库_黑客防线网安服务器维护基地--Powered by WWW.RONGSEN.COM.CN

临时表在SQL数据库和MySql 中创建的方法

作者:黑客防线网安SQL维护基地 来源:黑客防线网安SQL维护基地 浏览次数:0

本篇关键词:创建方法数据库临时
黑客防线网安网讯:   SQL Server创建临时表:创建临时表       方法一:     create table #临时表名(字段1 约束条件,                      字段2 约束条件,                  .....)        create table #...

   SQL Server创建临时表:
创建临时表
       方法一:
     create table #临时表名(字段1 约束条件,
                      字段2 约束条件,
                  .....)
        create table ##临时表名(字段1 约束条件,
                          字段2 约束条件,
                      .....)
        方法二:
     select * into #临时表名 from 你的表;
       select * into ##临时表名 from 你的表;
注:以上的#代表局部临时表##代表全局临时表

查询临时表
     select * from #临时表名;
       select * from ##临时表名;

删除临时表
     drop table #临时表名;
       drop table ##临时表名;


Mysql创建临时表
创建临时表
       create temporary table 临时表名(字段1 约束条件,
                              字段2 约束条件,
                    .....)

查询临时表
select * from 临时表名

删除临时表
drop table 临时表名

关于MySql创建临时表,在Mysql命令端可以成功创建临时表,但是我在PHPMyadmin中一直创建不成功,很是郁闷

    黑客防线网安服务器维护方案本篇连接:http://www.rongsen.com.cn/show-10759-1.html
网站维护教程更新时间:2012-03-21 03:10:09  【打印此页】  【关闭
我要申请本站N点 | 黑客防线官网 |  
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479

footer  footer  footer  footer