CREATE PROCEDURE [dbo].[BO_GetUserFollows]
@userId int
AS
SELECT FollowUserId from UserFollows where UserId=@userId
RETURN 0