Arjuna Aircraft Ident.: F-MBSD | Salut,
J'arrive pas à faire des jointures sur des fichiers dBase III avec les drivers ODBC (Microsoft Jet)
Y'a pas moyen ou si je suis une bille et je trouve pas la bonne syntaxe ?
Fichiers : MEUDFOU.dbf et MEUDARTI.dbf
Code :
- select MEUDFOUR.nomfourni, MEUDFOUR.code_fourn from MEUDFOUR where MEUDFOUR.code_fourn = 'PELL';
- => Marche
- select MEUDARTI.nomarticl, MEUDARTI.code_fourn from MEUDARTI where MEUDARTI.code_fourn = 'PELL';
- => Marche
- select MEUDFOUR.nomfourni, MEUDARTI.code_articl from MEUDARTI, MEUDFOUR where MEUDARTI.code_fourn = MEUDFOUR.code_fourn and MEUDFOUR.code_fourn = 'PELL';
- => Marche pas
- select MEUDFOUR.nomfourni, MEUDARTI.code_articl from MEUDARTI inner join MEUDFOUR on MEUDARTI.code_fourn = MEUDFOUR.code_fourn where MEUDFOUR.code_fourn = 'PELL';
- => Marche pas
|
Relou  Message édité par Arjuna le 09-03-2006 à 16:26:04
|