select field1 as fi,field2 as f2, field1*field2 from A

解决方案 »

  1.   

    不要AS就可以了
    select field1 fi,field2 f2,f1*f2 from A;
      

  2.   

    to zg_yuan(zgy) : field1,field2是复杂的计算式
    to  PF10GK22(大前锋守门员):不要AS一样出错。
    还有正确的方法吗?谢谢
      

  3.   

    请问SQL问题:如何实现类似的功能select field1 as fi,field2 as f2,f1*f2 from A; Oracle提示无f1,f2字段。谢谢
      

  4.   

    select a.f1,a.f2,a.f1*a.f2 from (select field1 as f1,field2 as f2 from A) a;