I have already created a stored procedure for Select Query and it is working Fine.
But I need some thing more efficient to make my SP Query.
Have you any suggestion for that.
Create Procedure usp_SelectUserProfile
@UserId int
As
Begin
Select <column name> from DB where UserId = @UserId
End
Thnx
The only thing i can imagine here is:
Suppresses sending the amount of affected rows to client, on small procedures with many calls can save you up to 17% of call time