Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
What is wrong in my sql statement
Message
 
À
15/11/2000 13:20:28
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
00442223
Message ID:
00442245
Vues:
9
You have to specify the type of join for each table:
lsqlstring = " SELECT Purchase.*, Accmst.accname, Depts.deptname;
               FROM  purchase LEFT OUTER JOIN accmst;
               LEFT OUTER JOIN depts ;
               ON  Purchase.department = Depts.deptno  ;
               LEFT OUTER JOIN Accmst ;
               ON  Purchase.partycode = Accmst.acccd"
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform