Answers for "compare 2 dates mysql if time is older than 2 days"

SQL
5

mysql date greater than 30 days

SELECT * FROM my_table WHERE created_at > DATE_SUB(NOW(), INTERVAL 1 DAY)
Posted by: Guest on February-26-2021
0

mysql compare work days

5 * (DATEDIFF(@E, @S) DIV 7) + MID('0123444401233334012222340111123400001234000123440', 7 * WEEKDAY(@S) + WEEKDAY(@E) + 1, 1)
Posted by: Guest on October-26-2020

Code answers related to "compare 2 dates mysql if time is older than 2 days"

Code answers related to "SQL"

Browse Popular Code Answers by Language