Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Removing the last child record from same parent if seque
Message
De
29/06/2015 09:24:24
 
 
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Versions des environnements
SQL Server:
SQL Server 2012
Application:
Web
Divers
Thread ID:
01621484
Message ID:
01621547
Vues:
54
I would like to revisit the SQL. From that approach,what I did to expand the support to remove additional items in the last sequence is this:
;WITH InvoiceTemp AS
 (SELECT Invoice.Numero,Invoice.NoClient,Invoice.NoStatus,
  ROW_NUMBER() OVER (PARTITION BY Invoice.NoClient ORDER BY AddDate DESC) AS RowNumber,
  COUNT(*) OVER (PARTITION BY Invoice.NoClient) AS RowTotal
  FROM Invoice)

SELECT * FROM InvoiceTemp
 WHERE InvoiceTemp.RowNumber<RowTotal AND InvoiceTemp.NoStatus=7 AND
  EXISTS (SELECT * FROM InvoiceTemp InvoiceTemp2
           WHERE InvoiceTemp2.RowNumber=2 AND InvoiceTemp2.NoStatus=7 AND 
            InvoiceTemp.NoClient=InvoiceTemp2.NoClient)
But, that gets all Completed, in the child records, and even the first one.

Do you see what I did wrong?
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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform