Try the following:
CREATE FUNCTION rrr (@m INT)
RETURNS INT
AS
BEGIN
SELECT
end
... After the SELECT, type "@, and @m" will appear in the candidate list.
Unfortunately, not so for RETURN:
CREATE FUNCTION rrr (@m INT)
RETURNS INT
AS
BEGIN
RETURN(
end
... After the (, type "@ functions...
CREATE FUNCTION rrr (@m INT)
RETURNS INT
AS
BEGIN
SELECT
end
... After the SELECT, type "@, and @m" will appear in the candidate list.
Unfortunately, not so for RETURN:
CREATE FUNCTION rrr (@m INT)
RETURNS INT
AS
BEGIN
RETURN(
end
... After the (, type "@ functions...