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