Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Removing the last child record from same parent if seque
Message
From
29/06/2015 09:24:24
 
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Environment versions
SQL Server:
SQL Server 2012
Application:
Web
Miscellaneous
Thread ID:
01621484
Message ID:
01621547
Views:
55
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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform