> update calls set date_part('day',xdate) =
> date_part('month',xdate),
> date_part('month',xdate) = date_part('day',xdate)
> where date_part('day',xdate) < 13 and xdate < '2001/11/08';
>
> (2001/11/08 is when I found/fixed the insert problem)
You should always use the ISO date format - it avoids all these problems,
and is unambiguous. It is: YYYY-MM-DD
Chris