here is the offending script:
select distinct person, min(pdate) as min_date from db
where ptype like 'A1%'
or (ptype like 'B1%'
and (pdate between '2000-01-01' and '2001-01-01'))
group by person
The problem
The min_date retreived also include those outisde of the pdates I have specified. However when I take out one of the ptypes so I have:
select distinct person, min(pdate) as min_date from db
where ptype like 'A1%'
and (pdate between '2000-01-01' and '2001-01-01')
group by person
then this problem goes away. Why is it that introducing a second ptype is retuning instances outside of the pdates i have specified?
Thanks.
BETWEEN, even for dates - it doesn't work nicely with timestamps. For instance... in your statement you'll end up withpDates for all of 2000, as well as for January 1st, 2001. IfpDateis actually a timestamp, this will be2001-01-01 00:00:00.000000only, which still is aggravating. Please see this blog post for more (although some of that is SQL Server specific, the general concepts apply). – Clockwork-Muse Feb 14 at 18:47