Write a Query to find the last date of last(previous) month.

SELECT CURRENT_DATE-EXTRACT(DAY FROM CURRENT_DATE);

Post a Comment