/ Published in: SQL
Expand |
Embed | Plain Text
ALTER FUNCTION [dbo].[fGetBuyerStatus] (@StatusId INT) RETURNS VARCHAR(30) AS BEGIN DECLARE @RETURN VARCHAR(100) SELECT @RETURN=BuyerStatusName FROM LUAssetBuyerStatus WHERE BuyerStatusID = @StatusId RETURN @RETURN END
You need to login to post a comment.
