Answers for "last_day in oracle"

SQL
0

oracle last day of month

-- Last day of current month
SELECT trim(to_date(last_day(sysdate), 'DD/MM/YYYY')) AS LASTDAY FROM DUAL;
Posted by: Guest on April-13-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language