執行merge語句報ora-00926

wisdomone1發表於2012-09-26
出錯語句
 
merge into t_t1
using t_tmp
on (t_t1.product_id=t_tmp.product_id)
when not matched then insert t_t1(t_t1.product_id,t_t1.product_name) 
          values(1,'ab')
 
修正後語句
merge into t_t1
using t_tmp
on (t_t1.product_id=t_tmp.product_id)
when not matched then insert (t_t1.product_id,t_t1.product_name)
          values(1,'ab')
 
小結:1,insert前面無表名,直接insert
  

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-745138/,如需轉載,請註明出處,否則將追究法律責任。

相關文章