SQL - Stored Procedures and Functions
Given the function:
What is the result of
CREATE FUNCTION dbo.MultiplyByTwo(@val INT) RETURNS INT AS BEGIN RETURN @val * 2 END
What is the result of
SELECT dbo.MultiplyByTwo(7);?