Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Create SQL Update on 2 derived tables
Message
 
General information
Forum:
Microsoft SQL Server
Category:
Other
Environment versions
SQL Server:
SQL Server 2005
Miscellaneous
Thread ID:
01487194
Message ID:
01487202
Views:
32
>>>Yes, sure. JOIN with 2 derived tables or better use CTE to simplify the code.
>>
>>I don't know how CTE works (or what it is). But I will think on how to apply JOIN to this case. Thank you.
>
>I updated my reply with the code, but didn't have a chance to post - BTW, I didn't get an error either.
>
>Anyway, here is the code:
>
>
>;with cteSum1 as (select 
>PurchaseOrders.ProjectAccount, sum(PurchaseOrders.PoAmount) as TotPro 
>from PurchaseOrders group by ProjectAccount)
> 
>update Projects set SpentTest = PoSum.TotPo 
>from Projects  inner join cteSum1 PoSum
>ON Projects.ProjectAccount = PoSum.ProjectAccount
>
Thank you for the example.
"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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform