WEB开发网
开发学院数据库MSSQL Server 临时表在SQL Server和MySql中创建的方法 阅读

临时表在SQL Server和MySql中创建的方法

 2008-06-17 13:11:06 来源:WEB开发网   
核心提示:SQL Server创建临时表:创建临时表 方法一: create table #临时表名(字段1 约束条件,字段2 约束条件,.....)create table ##临时表名(字段1 约束条件,字段2 约束条件,.....)方法二: select * into #临时表名 from 你的表; select * in

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中一直创建不成功,很是郁闷

Tags:临时 SQL Server

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接