Last active
January 22, 2022 12:10
-
-
Save mahmoud-eskandari/c9fa3524e0109a708cb3f025589403f6 to your computer and use it in GitHub Desktop.
بدست آوردن نیمه شب شنبهی هفتهی جاری در SQL, MySQL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TIMESTAMP(DATE_SUB(CURDATE(),INTERVAL | |
CASE weekday(CURDATE()) | |
WHEN 0 THEN 2 | |
WHEN 1 THEN 3 | |
WHEN 2 THEN 4 | |
WHEN 3 THEN 5 | |
WHEN 4 THEN 6 | |
WHEN 5 THEN 0 | |
WHEN 6 THEN 1 | |
END | |
DAY)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment