请问那里有临时表的一些特性和用法,最好是电子书。有的发一分给我,或给我分网址,谢谢!!!![email protected]

解决方案 »

  1.   

    临时表的特性和用法?用SQL建一个就是了,关闭的时候,临时表就没了,建好后就当是一个表来用就是
      

  2.   


    --例子 建立實表
    create table test(empid char(5) not null  ,empName char(10) null)
    insert into test
    select '001','aa'
    union
    select '002','bb'
    union
    select '003','cc'
    ----------------------
    --生成臨時表
     select *  into   #Tmp  ---
    from  test 
    -----------生成後關掉查詢窗口臨時表就消失了------
      

  3.   

    ----不要關查詢窗口 
    select * from #tmp
      

  4.   

    不是的,我要在DELPHI里建立和处理,还要把数据付给它,我想知道它的一些处理方法。