Viewing 2 posts - 1 through 2 (of 2 total)
what do you want to see?
July 25, 2010 at 1:46 pm
#1197964
Try this:
create table p
(name char(10)
,n int)
insert into p
select 'AA',10 union all
select 'AA',12 union all
select 'AA',4 union all
select 'BB',11 union all
select 'CC',51 union all
select 'CC',33
select
cast(name as varchar(20)) as r
...
July 10, 2010 at 7:43 am
#1191134