Does anyone know if it is possible to take a date from a random date in pl sql.
Example.
SELECT SYSDATE FROM DUAL
and here the result will be displayed: 26-10-2010 13:30:34
Now I want to have only a date as a number. In this case, it will be 26.
Or there is some kind of function like IsNum that can recognize it for me. So I can just take 26 and leave the rest.
source
share