Query: SELECT v.video_id, v.title, v.slug, v.total_views, v.duration, v.rating,
v.likes, v.rated_by, v.add_time, v.thumb, v.thumbs, v.url, v.source_id, GROUP_CONCAT(vc.category_id) AS ids, vlt.title
FROM video AS v
INNER JOIN video_category AS vc1 ON (vc1.video_id = vc1.video_id AND vc1.category_id = 289) LEFT JOIN video_category AS vc ON (vc.video_id = v.video_id) LEFT JOIN video_translations AS vlt ON (vlt.video_id = v.video_id AND vlt.lang_id = 3)
WHERE v.status = 1
AND v.orientation IN (1) GROUP BY v.video_id ORDER BY v.total_views DESC ORDER BY v.today_views DESC LIMIT 60
Error Message: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'ORDER BY v.today_views DESC LIMIT 60' at line 6
Error Number: 1064