Subject | Re: BETWEEN Operator Inclusive? |
---|---|
Author | jackmills75 |
Post date | 2004-03-23T06:55:11Z |
--- In firebird-support@yahoogroups.com, "Ivan Prenosil"
<Ivan.Prenosil@s...> wrote:
Jack
<Ivan.Prenosil@s...> wrote:
> > BETWEEN is inclusive, it is just that 'DA' > 'D'. Hence, in yourcase
> > I would use something likeThanks Guys, for the explanation & Advice
> >
> > Select * from TABLE
> > Where NAME Between 'A' and 'DZZZZZZZZZZZZZZZZZZZZZZZZZZZ'
>
> ... which will not work with national characters.
>
> Better use
> NAME >= 'A' AND NAME <'D'
>
> Ivan
Jack