insert into countries (country_id,country_name,country_subregion,country_region) 
values(select country_id,country_name,country_subregion,country_region from sh.countries)

解决方案 »

  1.   

    ORA-00936 missing expressionCAUSE:A required part of a clause or expression has been omitted. For example, a SELECT statement may have been entered without a list of columns or expressions or with an incomplete expression. This message is also issued in cases where a reserved word is misused, as in SELECT TABLE. ACTION:Check the statement syntax and specify the missing component.
      

  2.   

    insert into countries 
    select country_id,country_name,country_subregion,country_region from sh.countries
      

  3.   

    insert into countries (country_id,country_name,country_subregion,country_region)
    select country_id,country_name,country_subregion,country_region from sh.countries
      

  4.   

    去掉values
    呵呵 我来凑个数
      

  5.   

    HelloWorld_001 的句子是对的.厉害啊,谢谢了朋友 
    syuku去掉values 我估计也是这个意思,都谢谢了.