0
從MYSQL 5.1.73cll轉到MYSQL 10.1.19-MariaDB(現在運行在PHP 7中),該查詢從返回GOOD結果返回NO結果。MYSQL中的MYSQL查詢10.1.19-MariaDB和PHP 7返回無結果
SELECT t.eventid, t.tname, t.tdate, t.tyear, a.aname, t.ttour FROM
gs_tournaments as t LEFT JOIN gs_active as a ON a.eventid = t.eventid LEFT
JOIN gs_stats as s ON s.tid = t.tid WHERE s.pid = 34062 && a.active = 'y'
GROUP BY t.eventid ORDER BY t.tid ASC
我已經搜索了其他MYSQL升級帖子,但沒有看到答案。
任何幫助,將不勝感激。
嘗試左外連接,而不是左連接? – Peter
感謝您的建議 - 仍然沒有結果 –
我會建議先嚐試僅使用gs_tournaments表來查看是否得到結果,然後添加第一個LEFT JOIN,然後添加第二個。我使用10.1.25-MariaDB和PHP7,我沒有看到與MySQL有什麼不同。奇怪。 – Peter