Viewing 2 posts - 1 through 2 (of 2 total)
Gotcha, makes sense. This function wouldn't work though based on the example you provided though since Checksum_agg() seems to only work on integers. That said, I'll add that...
August 30, 2009 at 7:09 pm
#1046693
declare @myTable table(store int, product char(1))
insert into @myTable
(
store
,product
)
select 1 ,'A' union
select 1 ...
August 28, 2009 at 7:54 pm
#1046443