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