程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle數據庫基礎 >> oracle數據庫插入單引號

oracle數據庫插入單引號

編輯:Oracle數據庫基礎

insert into Tai_Kpi_src
  (kpi_id, kpi_name, v_sql)
values
  (4,
   ''test'',
   ''select to_char(a.start_time time,''''yyyy-mm-dd hh24:mi:ss'''', a.hw_sys_calls_r value
  from tpm_rt_msc_call_ss_h a
 where exists (select 1 from a_objects b where a.int_id = b.int_id and b.object_class = 101 and b.tmsc_cat = 0
           and b.vendor_id = 8 and b.confirmed < 2 and #ne_id#)  and a.start_time >= to_date(''''#start_time#'''', ''''yyyy-mm-dd hh24:mi:ss'''')
   and a.start_time < to_date(''''#stop_time#'''', ''''yyyy-mm-dd hh24:mi:ss'''')
   and a.hw_sys_calls_r is not null'') 

這樣,表裡面v_sql字段就是:

select to_char(a.start_time time,''yyyy-mm-dd hh24:mi:ss'', a.hw_sys_calls_r value
  from tpm_rt_msc_call_ss_h a
 where exists (select 1 from a_objects b where a.int_id = b.int_id and b.object_class = 101 and b.tmsc_cat = 0
           and b.vendor_id = 8 and b.confirmed < 2 and #ne_id#)  and a.start_time >= to_date(''#start_time#'', ''yyyy-mm-dd hh24:mi:ss'')
   and a.start_time < to_date(''#stop_time#'', ''yyyy-mm-dd hh24:mi:ss'')
   and a.hw_sys_calls_r is not null

就是多加一個單引號,如要插進去的值是123''34''5,那麼insert into tb_name (column_name) values(''123''''34''''5'');



  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved