Hi
Bandi
How to solve this issue for Sorting data
create table #temp(Name varchar(20))
insert into #temp (Name)
select '1523'
union all
select '0-300'
union all
select '110-150'
union all
select '61-230'
union all
select '41-71'
union all
select '81-100'
Select * from #temp
--I need output this
--=====================
0-300
41-71
61-230
81-100
110-150
1523
Mark as Answer if its helpful to you
Kumaraspcode2009@gmail.com