Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Cursor Clarification

    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...

  • RE: Show sum in the last row

    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...

Viewing 2 posts - 1 through 2 (of 2 total)