Answers for "mysql last friday of current month"

SQL
0

mysql last friday of current month

SELECT LAST_DAY(NOW()) - ((7 + WEEKDAY(LAST_DAY(NOW())) - 4) % 7);
Posted by: Guest on October-25-2020

Code answers related to "mysql last friday of current month"

Code answers related to "SQL"

Browse Popular Code Answers by Language