Here is my initial code :
SELECT order_logs.order_logs_created, DATEDIFF(HOUR ,NOW(),order_logs.order_logs_created) FROM order_logs
And I gave an error :
#1582 - Incorrect parameter count in the call to native function 'DATEDIFF'
Then , I searched about MariaDB's DATEDIFF and I saw this , I figured out that I can use DATEDIFF with two parameters so I remove HOUR :
SELECT order_logs.order_logs_created, DATEDIFF(NOW(),order_logs.order_logs_created) FROM order_logs
I need time difference in hours , Actually it gives me in days. Any suggestion?