I want to use <to_date> function on a string (which doesn't require any data from any table) in oracle without using <select .. from> clause
I want to show the string '01011912' into to the date 01/01/1912 as follows : to_date('01011912', 'DDMMYYYY'), but the it requires select and from keywords :(
If you are using SQL then to use a query you need to use a
SELECT
statement:From Oracle 23, you can omit
FROM DUAL
and just use:But you still MUST use the
SELECT
keyword (as that is just how the SQL syntax works, in all SQL dialects not just Oracle).If are using PL/SQL (Oracle's procedural language extension) then you can use:
Which does not require either
SELECT
orFROM
but does requireBEGIN
andEND
to start and end the PL/SQL block.