On Wed, 17 Jan 2001, [EMAIL PROTECTED] wrote:

> E.g.
> 
> create table mytable (created datetime);
> insert into mytable values ('01-01-2001');
> ...
> insert into mytable values ('01-31-2001');
> 
> select created from mytable where date_part('dow', created) = 7 and 
>date_part('month', created) = 1;
> 

 This will faster (one function call instead two):

 ..... where to_char(created, 'D/MM') = '7/01';

                                Karel

Reply via email to