salut,
je suis en train de developpez mon site perso...

j'ai une requette MYSQL 5.0.67 :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
 
SELECT table1.Id1, table2.Id2, table3.id3
FROM table1, table2, table3
WHERE (table1.id1 = table3.id3 and table1.id1 = 1 and table1.champs2 = "test" and......)
OR ou bien  AND
(table2.id2 = table3.id3 and table2.id2 = 45 and table2.champs = "test" and......)
et je veux une moyen pour utiliser la meme requette avec ZEND FRAMEWORK
quelque chose comme ça :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
 
            $tableObject = new Commande_Model_DbTable_Commande(); 
            $select = $tableObject->select(); 
            $select = $select->from('table1,table2,table3...'); .....
merci de m'aider