Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Extract Numeric Records From Character Type

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

Viewing post 1 (of 1 total)