How can we know the number of days between two given dates
using MySQL?
Answers were Sorted based on User's Feedback
Answer / sergii
DATEDIFF(expr1,expr2)
DATEDIFF() returns expr1 – expr2 expressed as a value in
days from one date to the other. expr1 and expr2 are date
or date-and-time expressions. Only the date parts of the
values are used in the calculation.
mysql> SELECT DATEDIFF('1997-12-31 23:59:59','1997-12-30');
-> 1
mysql> SELECT DATEDIFF('1997-11-30 23:59:59','1997-12-31');
-> -31
Is This Answer Correct ? | 9 Yes | 1 No |
Answer / shwetha
There is a operator {not} BETWEEN ,we can use this in where
clause to get in between dates.
ex:
select count(column name)
from table1
where dates BETWEEN '01-jul-04' and '01-jul-05';
Is This Answer Correct ? | 4 Yes | 4 No |
What is mysql57?
What does a TIMESTAMP do on UPDATE CURRENT_TIMESTAMP data type?
how many fields can be updated using set in a mysql query?
Why do we use the mysql database server?
What is mysql slow query?
What are triggers in mysql?
Do while loop in mysql procedure?
What is the phantom problem?
Is mysql a free database?
Is mysql better than oracle?
How to change a password for an existing user via mysqladmin?
What is difference between Sql server and MySql database? It may be silly question but i really dont know.