Menu Close

Find Date Difference Between two Columns in MySQL

Codeamend

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

Share

Posted in MySQL

You can also read...