select a,d='内容',c,d from table

解决方案 »

  1.   

    呵呵,樓上的可以不過先備份一下數據比較好create table table_temp as select * from your_table;
    drop table your_table;
    create table your_table (...);
    insert into your_table(...) select (...) from table_temp;
    drop table table_temp;
      

  2.   

    to:楼上
    我以前用Sql Server,在企业管理器中可以在任意位置插入列字段。
    另外客户程序有的要求按顺序知道字段名,比如“Recordseet1.fieldname(i)...”等等。请问:在Oracle中字段有序号吗?
      

  3.   

    liuyi8903(甜脆夹心)说的没错create table tb(a int,c int,b int);
    你可以这样查询select a,b,c from tb,然后recordset1.fieldname(i)...