oracle 遇見的異常

2021-08-24 18:40:44 字數 823 閱讀 1551

1、日期字串沒加單引號。

select comparetime(to_date(2009-08-01,'yyyy-mm-dd'),to_date(2009-08-04,'yyyy-mm-dd'),p.begintime,p.endtime) as r from plan_vp p

正確的select comparetime(to_date('2009-08-01','yyyy-mm-dd'),to_date('2009-08-04','yyyy-mm-dd'),p.begintime,p.endtime) as r from plan_vp p

ora 01810 格式**出現兩次

如:select to_date('2005-01-01 13:14:20','yyyy-mm-dd hh24:mm:ss') from dual;

原因是sql中不區分大小寫,mm和mm被認為是相同的格式**,所以oracle的sql採用了mi代替分鐘。

select to_date('2005-01-01 13:14:20','yyyy-mm-dd hh24:mi:ss') from dual;

另要以24小時的形式顯示出來要用hh24

select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual;//mi是分鐘

select to_char(sysdate,'yyyy-mm-dd hh24:mm:ss') from dual;//mm會顯示月

異常:hour must be between 1 and 12

to_date('2009-08-28 16:37:02','yyyy-mm-dd hh24:mi:ss')

部署Redis集群遇見的異常

需要將提示節點中的資料清空,在節點目錄中,選擇相應埠 redis cli p7001 flushdb1.redis.clients.jedis.exceptions.jedisconnectionexception could not get a resource from the pool 可能是...

oracle 遇見過的錯誤集錦

1.ora 38104 無法更新 on 子句中引用的列 原因因為 在merge into 語句的update中 更新了用於作為on 鏈結的字段 merge into fxyd rwsp sp using select rwpc bh,sysdate spsj,xxly dm,spyj,spyjsm,...

遇見的異常以及這周學習的內容

首先來說一下自己遇見的兩個異常,乙個是屬於以前遇見過,也解決了,結果就忘了,以至於這次被坑了,還有乙個有點奇妙,很好解決。1.首先是空指標異常,如下圖a這個類裡面使用到了乙個 autowired注入進來的bean,因為注入bean是在類初始化的時候才會注入進來,否則就會是null,這也是被坑的地方。...