1.update tbl set new=old;
2.insert into tbl select *  from old_tbl;

解决方案 »

  1.   

    1、update table_name set new_line=copy_line;
    2、insert into new_table select * from old_table
      

  2.   

    几位帮我看看
    http://expert.csdn.net/Expert/topic/3041/3041066.xml?temp=.9547846
      

  3.   

    1 你的表的数据量是多大 大于万行 用 create table ... as select ... old table
       然后 删除旧表 rename新表为旧表 可能快些
      

  4.   

    1. alter table mytable add (new_column type.....)
       update mytable set new_column = old_column
    2. create table new_table as select * from old_table