fredericvandenplas
Programmer
Hello there.
I have a form with 5 yes/no dropdown fields.
I want to display col1 (yes/no in dutch)
or col2(yes/no in french) col3(yes/no in english)
my main table has as fields Airco, hydraulics etc...
The yes_no has to come from a table as depending on the language choosen i gets col1,col2 or col3
When i run this sql
SELECT `Hydraulics`,`Airco`
FROM ((`main` INNER JOIN yes_no AS yes_no1 ON main.Hydraulics = yes_no1.idnumber) INNER JOIN yes_no AS yes_no2 ON main.Airco = yes_no2.idnumber)
I get hydraulics >> 1 (yes)
Airco >> 2 (no)
but not the content of the yes_no table.
It works in access where i tried it but not in Mysql
anny help would be very much appreciated
Frederic vandenplas Belgium
I have a form with 5 yes/no dropdown fields.
I want to display col1 (yes/no in dutch)
or col2(yes/no in french) col3(yes/no in english)
my main table has as fields Airco, hydraulics etc...
The yes_no has to come from a table as depending on the language choosen i gets col1,col2 or col3
When i run this sql
SELECT `Hydraulics`,`Airco`
FROM ((`main` INNER JOIN yes_no AS yes_no1 ON main.Hydraulics = yes_no1.idnumber) INNER JOIN yes_no AS yes_no2 ON main.Airco = yes_no2.idnumber)
I get hydraulics >> 1 (yes)
Airco >> 2 (no)
but not the content of the yes_no table.
It works in access where i tried it but not in Mysql
anny help would be very much appreciated
Frederic vandenplas Belgium