Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Need advice on SQL
Message
From
17/09/2006 18:20:37
 
 
To
17/09/2006 18:03:51
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Environment versions
Visual FoxPro:
VFP 9 SP1
OS:
Windows XP SP2
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01154440
Message ID:
01154513
Views:
8
>sorry I have not looked well.
>
>try ( if VFP support it ):
>
>SELECT Program.Numero,Program.Active,Program.Title,Program.Notes_E,Program.Notes_F,Program.NoMaster,;
> Master.FirstName,Master.LastName,MasterType.Title_E AS MasterType_E,MasterType.Title_F AS MasterType_F,Video.Url,Video.Numero AS PrimaryKey;
> FROM Program;
> INNER JOIN Master ON Program.NoMaster=Master.Numero;
> INNER JOIN MasterType ON Master.NoMasterT=MasterType.Numero;
> INNER JOIN Video ON Program.Numero=Video.NoProgram;
> INNER JOIN InvoiceI ON Video.Numero=InvoiceI.NoVideo;
> INNER JOIN Invoice ON InvoiceI.NoInvoice=Invoice.Numero;
> WHERE Program.Active AND Invoice.AddUser=1;
> AND Video.Numero=(SELECT MIN(V.Numero) FROM Video V JOIN InvoiceI I ON V.Numero=I.NoVideo WHERE V.NoProgram=Video.NoProgram);
> ORDER BY Program.Title
>
>but it can to be not sufficient.
>
>
>SELECT Program.Numero,Program.Active,Program.Title,Program.Notes_E,Program.Notes_F,Program.NoMaster,;
> Master.FirstName,Master.LastName,MasterType.Title_E AS MasterType_E,MasterType.Title_F AS MasterType_F,Video.Url,Video.Numero AS PrimaryKey;
> FROM Program;
> INNER JOIN Master ON Program.NoMaster=Master.Numero;
> INNER JOIN MasterType ON Master.NoMasterT=MasterType.Numero;
> INNER JOIN Video ON Program.Numero=Video.NoProgram;
> INNER JOIN InvoiceI ON Video.Numero=InvoiceI.NoVideo;
> INNER JOIN Invoice ON InvoiceI.NoInvoice=Invoice.Numero;
> WHERE Program.Active AND Invoice.AddUser=1;
> AND Video.Numero=(SELECT MIN(V.Numero) FROM Video V JOIN InvoiceI I ON V.Numero=I.NoVideo;
> JOIN  Invoice ON I.NoInvoice=Invoice.Numero AND Invoice.AddUser=1;
> WHERE V.NoProgram=Video.NoProgram);
> ORDER BY Program.Title
>
>
>
>It is better probably a solution in two steps.

Both SQL return the video purchased and not the first one. So far, the solution proposed by Jim is the only one I was able to achieve that from.
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
Previous
Reply
Map
View

Click here to load this message in the networking platform