Between
Returns TRUE when the input expression (numeric or string) is within the specified lower and upper boundary.
-- Additional Params: -t JavaScript
CREATE PROCEDURE ProcBetween
AS
BEGIN
declare @aValue int = 1;
IF(@aValue BETWEEN 1 AND 2)
return 1
END;
GOKnown Issues
Related EWIs
Last updated
