Bạn có thể khai báo một biến bảng (Khai báo một biến kiểu bảng):
declare @MonthsSale table(monthnr int)
insert into @MonthsSale (monthnr) values (1)
insert into @MonthsSale (monthnr) values (2)
....
Bạn có thể thêm các cột bổ sung tùy thích:
declare @MonthsSale table(monthnr int, totalsales tinyint)
Bạn có thể cập nhật biến bảng giống như bất kỳ bảng nào khác:
update m
set m.TotalSales = sum(s.SalesValue)
from @MonthsSale m
left join Sales s on month(s.SalesDt) = m.MonthNr