Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Getting the data from one SQL
Message
De
17/11/2005 17:47:56
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Titre:
Getting the data from one SQL
Divers
Thread ID:
01070001
Message ID:
01070001
Vues:
51
When doing it with VFP code, I was using two SQL to obtain the desired data. Basically, I was getting one cursor from unions for the first SQL like this:
SELECT NoMaster AS Numero FROM Style; 
 UNION SELECT NoMaster2 AS Numero FROM Style;
 GROUP BY 1 INTO CURSOR Temp
lcInnerJoin='INNER JOIN Temp ON Master.Numero=Temp.Numero'
And, then, on the second SQL, I was simply evaluating lcInnerJoin to get the data such as:
SELECT Master.Numero,Master.FirstName,Master.LastName,'MasterType.Title_A,MasterType.Title_F,Master.Bio_A,Master.Bio_F,;
 UPPER(Master.LastName) AS LastName2,UPPER(Master.FirstName) AS FirstName2;
 FROM Master;
 INNER JOIN MasterType ON Master.NoMasterT=MasterType.Numero;
 INNER JOIN ON Master.NoMasterT=MasterType.Numero;
 &lcInnerJoin ORDER BY LastName2,FirstName2
Now, I need to merge that code into one SQL in order to be compliant with a client server approach for a future expansion to SQL Server. The inner join is not a problem but I am looking for the best approach in regards to the union clause.
Michel Fournier
Level Extreme Inc.
Designer, architect, owner of the Level Extreme Platform
Subscribe to the site at https://www.levelextreme.com/Home/DataEntry?Activator=55&NoStore=303
Subscription benefits https://www.levelextreme.com/Home/ViewPage?Activator=7&ID=52
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform