如果需要创建表,应该用
create table tempcfip3 select * from cf_ip;

解决方案 »

  1.   

    如果需要创建表,应该用
    create table tempcfip3 as select * from cf_ip;
      

  2.   

    不和语法。
    select col1 into temp from table_name where ...
    不能这样:
    select * into table2 from table1
      

  3.   

    select * into tempcfip3 from cf_ip;
    需要建表的操作
    create table tempcfip3 as select * from cf_ip;select * into tempcfip3 from cf_ip;
    在oracle里一般是选择记录到变量里
      

  4.   

    do  not take  it  for granted