spLoadRecord_ClientUserProfile

Parameters

Parameter Parameter Type Mode Description
@UserID int IN

Definition

Copy


CREATE     PROCEDURE dbo.spLoadRecord_ClientUserProfile
    (
        @UserID int
    )
AS
    select * from ClientUserProfile where UserID = @UserID
    RETURN