Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Select out rows into one result - Similar Problem

    --Create test table

    create table test_tab

    (item  int

    ,color varchar(20)

    )

    go

    --insert temp data

    insert into test_tab (item, color) values (361, 'BLACK')

    insert into test_tab (item, color) values (361, 'BLUE')

    insert into test_tab (item, color)...

Viewing post 1 (of 1 total)