I just want to make really sure I've got this down pat.
Using the Between or Not Between statement will give you an "inclusive" argument/result, and GT/LT arguments will give "exclusive" artuments/results?
For example, is this correct:
If I say "WHERE a is BETWEEN 1 AND 10, then the results could include:
1
5
8
10
If I say GT 1 and LT 10 then the results would only include:
5
8
Of the above list.
Is that correct, or am I missing something? I just want to make sure I'm understanding this correctly before I go and try to possibly correct some of my own old SQL code for a summary query.
Thanks in advance for any help/suggestions/references.
--
"If to err is human, then I must be some kind of human!" -Me
Using the Between or Not Between statement will give you an "inclusive" argument/result, and GT/LT arguments will give "exclusive" artuments/results?
For example, is this correct:
If I say "WHERE a is BETWEEN 1 AND 10, then the results could include:
1
5
8
10
If I say GT 1 and LT 10 then the results would only include:
5
8
Of the above list.
Is that correct, or am I missing something? I just want to make sure I'm understanding this correctly before I go and try to possibly correct some of my own old SQL code for a summary query.
Thanks in advance for any help/suggestions/references.
--
"If to err is human, then I must be some kind of human!" -Me