I am trying to order my table by date order but only shows the information by ID and does seems to ignore everything after ORDER BY.
I have tried using ID="ASC" and Date="DESC" and other variations from the table but still displays it the same way.
SELECT * FROM task_activity where user_id = ? order by id="DESC", date="DESC"
Table Structure:
id
userid
hour
activity
date
Any advise please?