Viewing 2 posts - 1 through 2 (of 2 total)
I was calling a function from a stored proc that accepted 3 parameters and returned a value based on how those parameters related to each other.
4th parameter would...
November 16, 2005 at 12:05 pm
#604261
i wrote a function a while back for this same problem
CREATE FUNCTION dbo.Quote()
RETURNS CHAR(1)
AS
BEGIN
RETURN ''''
END
beauty of the function is it's always available (without the DECLARE and SET statements), and it can be used...
November 15, 2005 at 2:38 pm
#604043