Subject | Re: [firebird-support] Re: BETWEEN Operator Inclusive? |
---|---|
Author | Ivan Prenosil |
Post date | 2004-03-22T13:43:41Z |
> BETWEEN is inclusive, it is just that 'DA' > 'D'. Hence, in your case... which will not work with national characters.
> I would use something like
>
> Select * from TABLE
> Where NAME Between 'A' and 'DZZZZZZZZZZZZZZZZZZZZZZZZZZZ'
Better use
NAME >= 'A' AND NAME <'D'
Ivan