Dear Friends
Anyone Tell Me How To Print 1 To 100 Without Loop In Sql Server
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Kunal VaishyaPosted Apr 27, 2012, 8:05 AM
with im as
(select 1 as [nom]
union all
select [nom] + 1 from Im where [nom] <100)
select * from im
anand sengarPosted Apr 27, 2012, 8:48 AM