Menu Close

Find Date Difference Between two Columns in MySQL

Find Date Difference Between two Columns in MySQL

Here, we will see how to find days difference between two date columns. Follow the Query below,

SELECT *, DATEDIFF(date_to, date_from) AS Days FROM table_name; 

Output

Date Difference Between two Columns
Posted in MySQL

You can also read...