Viewing post 1 (of 1 total)
how about:
create table #tmp( tc char(2))
insert into #tmp
select '11' union all
select '1a' union all
select 'a1' union all
select '1 ' union all
select '1b' union all
select '91'
select * from #tmp
where...
February 19, 2007 at 10:32 am
#690521