create table newtable as
select * from oldtable;

解决方案 »

  1.   

    insert into newtable from select * from oldtable 
      

  2.   


    to: IronPromises(铁诺) 你那句不行,提示
    Syntax error or access violation: near 'as' in ...table kc_temp [as]
      

  3.   


    to: linefire(线火 : Table or view not found: Table 'kc_temp' not found
      

  4.   

    select * into new_table from old_table where 1<>1 
      

  5.   


    to yiyilc:
    [Sybase][ODBC Driver][Adaptive Server Anywhere]Syntax error or access violation: Variable 'new_table' not found