What will be the output?
;with cte as(select rn=1 union all select rn=rn+1 from cte where rn<10)
select * from cte

 Posted by Rajnilari2015 on 8/24/2016 | Category: Sql Server Interview questions | Views: 3701 | Points: 40
Select from following answers:
  1. Values from 1 to 10
  2. Values from 1 to 9
  3. Values from -1 to -10
  4. Values from -1 to -9
  5. All Above

Show Correct Answer


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response