Using SQLyog Enterprise 4.01 downloaded 1/18/2005:
When I attempt this query:
select i.pays_en from ins_pays i left join mst_country m on i.pays_en=m.country_name;
I get the following error:
Error Code : 1064
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'select i.pays_en from ins_pays i left join mst_country m on i.pa
(0 ms taken)
However, an inner join works fine:
select i.pays_en from ins_pays i, mst_country m where i.pays_en=m.country_name;
Also, running the left join above on (gasp!) SQL-Front displays the rows just fine.