Oracle date seems equals

前端 未结 2 1163
时光取名叫无心
时光取名叫无心 2021-01-19 17:46

there is a table INCASSO in my database:

CREATE TABLE \"GEC_AP\".\"INCASSO\" 
(\"ID_INCASSO\" VARCHAR2(50 BYTE) NOT NULL ENABLE,
 \"ID_FATTURA\" VARCHAR2(50          


        
2条回答
  •  庸人自扰
    2021-01-19 18:02

    I've changed the date format used in SQL Developer to DD-MON-YYYY HH24:MI:SS and the following query:

    select id_incasso, id_fattura, id_piano_rate, data_esecuzione from incasso where id_incasso = 'TO_20110521258225'
    

    show that the difference is in the year:

    Thanks everyone.

提交回复
热议问题