when I still used PL/SQL Developer in Version 11.x , I could write queries like:
select * from my_tab t where t.day = '01.01.2017';
Now with Version 12.x this doesn't work anymore, I get an error saying invalid month. I tried different literals like '2017-01-01' but no luck.
Is there any way to activate this helpful Feature in Version 12.x so I can write queries in this abbreviated form?
select * from my_tab t where t.day = '01.01.2017';
Now with Version 12.x this doesn't work anymore, I get an error saying invalid month. I tried different literals like '2017-01-01' but no luck.
Is there any way to activate this helpful Feature in Version 12.x so I can write queries in this abbreviated form?