I am trying to call data from SQL table that is only 3 days old
My table has a lbs-date column in it and is date format. I have tried the following but get no result fro
SELECT *, DATE_FORMAT(lbs_date, '%y,%m,%d') FROM lbs_trace_etrack WHERE lbs_date >= CURDATE() - INTERVAL 3 DAY ORDER BY lbs_date DESC