declare @t table ( id int, SomeNumt int ) insert into @t select 1,10 union select 2,12 union select 3,3 union select 4,15 union select 5,23 select * from @t powyższy wybór zwraca mi następujące. id SomeNumt 1 10 2 12 3 3 4 15 5 23 Jak uzyskać następujące informacje: id srome CumSrome 1...