SELECT * FROM country INNER JOIN stats ON country.id=stats.ulke_id INNER JOIN revenue ON country.id=revenue.ulke_id WHERE stats.uye_id = 1where kaldırınca çalışıyor ancak uye_id'sine göre sorgulama yaptığımda sonuç alamıyorum.
Şu şekilde çalıştı inner join yerine left join kullandım. @emrahe; teşekkürler.
SELECT * FROM country LEFT JOIN stats ON country.id=stats.ulke_id LEFT JOIN revenue ON country.id=revenue.ulke_id WHERE stats.uye_id = 1