Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update between-transact-sql.md #9996

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/t-sql/language-elements/between-transact-sql.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ test_expression [ NOT ] BETWEEN begin_expression AND end_expression
NOT BETWEEN returns **TRUE** if the value of *test_expression* is less than the value of *begin_expression* or greater than the value of *end_expression*.

## Remarks
To specify an exclusive range, use the greater than (>) and less than operators (<). If any input to the BETWEEN or NOT BETWEEN predicate is NULL, the result is UNKNOWN.
To specify an exclusive range, use the greater than (>) and less than operators (<). If any input to the BETWEEN or NOT BETWEEN predicate is NULL, the result depends on the results of the constituent parts.
`test_expression >= begin_expression AND test_expression <= end_expression`. If either part is FALSE then the overall BETWEEN expression evaluates to FALSE. Otherwise the expression will evaluate to UNKNOWN.

## Examples

Expand Down