Merhaba, oyun sunucum için veritabanından bazı tabloları birleştirip veri almam gerekiyor ama sorgumdaki hatayı çözemedim. Yardımcı olabilecek var mı?

SELECT
    social_trend.hashtag,
    social_trend.total,
    social_trend.tarih,
    social_post.sid,
    social_post.tarih,
    social_post.post,
    oyuncular.id,
    oyuncular.isim
FROM
    social_trend
INNER JOIN
    social_post
ON
    social_post.post LIKE '%social_trend.hashtag%' ORDER BY social_post.tarih LIMIT 1
INNER JOIN
    oyuncular
ON
    oyuncular.id = social_post.sid
WHERE
    social_trend.tarih > UNIX_TIMESTAMP() ORDER BY social_trend.total DESC LIMIT 5