Forum: Legacy and Other Languages Feb 24th, 2008 |
| Replies: 1 Views: 10,999 The solution that I found is
UPDATE Test1
SET Value = Value + t2vs
FROM Test1 t1
INNER JOIN (SELECT Value, t2vs = SUM(Value)
FROM Test2 t2
GROUP BY... |
Forum: Legacy and Other Languages Feb 24th, 2008 |
| Replies: 1 Views: 10,999 Hello,
I am new to SQL. I assume that this is very simple. I have had trouble understanding the
relevant example in the BOL as my installation (Express edition) does not seem to have the... |