Viewing post 1 (of 1 total)
--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)...
August 27, 2004 at 9:59 pm
#520969