While developing web application , in many many places we face the problem where we can use only MYSQL and get the number of number of days between two given dates using MySQL.
This function will calculate the difference bretween two dates and give the out put in number of days. It will give the result positive only if first date is grater than second date. If Second date is greater than First date than it will give the negative result.
Example:
Query : SELECT DATEDIFF(’2010-01-05′, ’2009-12-15′);
Result : 21
Result : 21
Query : SELECT DATEDIFF(’2009-12-15′, ’2010-01-05′);
Result : -21
Result : -21
hope this will help full for some.
let me know if any solution require !
0 comments:
Post a Comment
Any Questions or Suggestions ?