Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Create SQL Update on 2 derived tables
Message
 
 
À
Tous
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Autre
Titre:
Create SQL Update on 2 derived tables
Versions des environnements
SQL Server:
SQL Server 2005
Divers
Thread ID:
01487194
Message ID:
01487194
Vues:
99
Hi,

Is it possible to have 2 derived tables in SQL Update command? For example, I created the following Update (which works):
update Projects set SpentTest = PoSum.TotPo from (select 
PurchaseOrders.ProjectAccount, sum(PurchaseOrders.PoAmount) as TotPo 
from PurchaseOrders group by ProjectAccount) as PoSum 
where Projects.ProjectAccount = PoSum.ProjectAccount
But I actually need to update the column SpentTest on the SUM() in another table as well. So I would have to have two FROM but I don't know what is the right syntax (if it is possible at all).

TIA.
"The creative process is nothing but a series of crises." Isaac Bashevis Singer
"My experience is that as soon as people are old enough to know better, they don't know anything at all." Oscar Wilde
"If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money that it values more, it will lose that too." W.Somerset Maugham
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform