Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Update from CROSS APPLY
Message
De
08/08/2013 10:08:07
 
 
À
Tous
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Titre:
Update from CROSS APPLY
Versions des environnements
SQL Server:
SQL Server 2008
Application:
Web
Divers
Thread ID:
01580047
Message ID:
01580047
Vues:
64
I have a SQL like this:
SELECT InvoiceDetail.AddDate,* FROM Invoice
CROSS APPLY (SELECT TOP 1 InvoiceDetail.Numero,InvoiceDetail.AddDate
FROM InvoiceDetail
WHERE InvoiceDetail.NoInvoice=Invoice.Numero
ORDER BY InvoiceDetail.Numero DESC) InvoiceDetail
WHERE Invoice.Status='1899-12-30 00:00:00.000'
This serves for identifying the related Invoice records having an empty value in the Status field. Because of a place in the application where the code was not correct, some records gets added without a value in that field. However, we have the value in the InvoiceDetail transaction table, which contains several detail records to that invoice, and the last one contains the timestamp I need to plug in my master table.

So, I need to create an UPDATE INNER JOIN related SQL Command to do that based on that SQL. The closes I have found so far is something like this but this is not complete:
UPDATE Invoice SET Status=DispatchDetail.Status
 INNER JOIN ... on ....NoInvoice=Invoice.Numero
SELECT InvoiceDetail.AddDate,* FROM Invoice
CROSS APPLY (SELECT TOP 1 InvoiceDetail.Numero,InvoiceDetail.AddDate
FROM InvoiceDetail
WHERE InvoiceDetail.NoInvoice=Invoice.Numero
ORDER BY InvoiceDetail.Numero DESC) InvoiceDetail
WHERE Invoice.Status='1899-12-30 00:00:00.000'
Can anyone complete this SQL to give me an example on such UPDATE with an INNER JOIN including a CROSS APPLY?
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