Viewing 2 posts - 1 through 2 (of 2 total)
cursors are the best way to slow down an application. This is because SQL Server is optimized for set-based operations where as cursor will work row by row.
So why do...
September 18, 2015 at 6:16 am
#1827698
Here is example you can make sum of column UserAge of table UserMaster as below and can do the same for as many column as you want.
select cast(usercode as...
September 18, 2015 at 5:46 am
#1827692