Blog that contains articles about new technologies related or not with programming.
I will describe and solves some problems that I encounter in my career.
ASP .NET, AJAX, Javascript, C++, C# and SQL are some of the subjects that will appear.
04 July 2014
Get continuous sequence numbers in sql sever
with d as ( select 1 as a union all select a+1 from d where a<10 ) select * from d --option (maxrecursion 0)
No comments:
Post a Comment