| Databases InterBase (28) MS-SQL (5) mysql (36) Oracle (1) |
Compare 2 dates in mysql
(1 votes). Leave comments and/ or rate it.
Question: I need to compare 2 dates in mysql but I only have version 3.23 of mysql installed and cannot upgrade.Answer: With mysql 4.1.1 the function datediff(date1,date2) and others were introduced.If you are using 4.0 or older, you need to use to_days(date1) and subtract in this form:
Comments:
|