Write a Oracle SQL statement to get the last date of the current month.
SELECT TRUNC (LAST_DAY (SYSDATE)) "Last day of current month" FROM DUAL;
Output:
Last day of current month 1 2/28/2021 12:00:00 AM
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Output: