Question
Mysql problem
I have a problem with this select:
SELECT Place,TN1nn, TN1vn, Points, places.City, places.Year,
clubs.Clubname, countries.countryname
FROM champ_women, places, countries LEFT JOIN clubs on
clubs.ClubID=champ_women.ClubID
WHERE champ_women.CityID=places.CityID AND
champ_women.CountryID=countries.CountryID
Mysql reports "Unknown column 'champ_women.ClubID' in 'on clause'"
That column exists definitely. The select works online without any
problem but fails locally (MySQL-Client-Version: 5.0.22). Has it to do
with different mysql-versions?
Martin
SELECT Place,TN1nn, TN1vn, Points, places.City, places.Year,
clubs.Clubname, countries.countryname
FROM champ_women, places, countries LEFT JOIN clubs on
clubs.ClubID=champ_women.ClubID
WHERE champ_women.CityID=places.CityID AND
champ_women.CountryID=countries.CountryID
Mysql reports "Unknown column 'champ_women.ClubID' in 'on clause'"
That column exists definitely. The select works online without any
problem but fails locally (MySQL-Client-Version: 5.0.22). Has it to do
with different mysql-versions?
Martin
