Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Grouping Question

    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...

  • RE: Grouping Question

    declare @myTable table(store int, product char(1))

    insert into @myTable

    (

    store

    ,product

    )

    select 1 ,'A' union

    select 1 ...

Viewing 2 posts - 1 through 2 (of 2 total)