SQL - Stored Procedures and Functions
Consider this function:
What will
CREATE FUNCTION dbo.ConcatNames(@first NVARCHAR(50), @last NVARCHAR(50)) RETURNS NVARCHAR(100) AS BEGIN RETURN @first + ' ' + @last END
What will
SELECT dbo.ConcatNames('John', 'Doe'); return?