CREATE FUNCTION MyFunction( @EntryParam BIGINT)RETURNS BIGINT --the returned typeASBEGIN DECLARE @ReturnVar AS BIGINT -- the var to keep the return value ..... -- set @ReturnVar's value RETURN @ReturnVarEND
Post a Comment
No comments:
Post a Comment