Re: [sqlalchemy] How I can filter out Saturday and Sunday?

2012-12-18 Thread Gabriel Pozo
Thanks Audrius, Your answer was very helpful, is exactly what I was looking. 2012/12/17 Audrius Kažukauskas audr...@neutrino.lt On Mon, 2012-12-17 at 11:54:20 -0800, Gabriel Pozo wrote: I am a new user of sqlalchemy, I need to know how I can filter the weekdays, to exclude Saturdays and

[sqlalchemy] How I can filter out Saturday and Sunday?

2012-12-17 Thread Gabriel Pozo
Hello everyone, I am a new user of sqlalchemy, I need to know how I can filter the weekdays, to exclude Saturdays and Sundays. I look for something similar to the function dayofweek of MySQL. Thank you all, and sorry for my bad English Regards !!! -- You received this message because you are

Re: [sqlalchemy] How I can filter out Saturday and Sunday?

2012-12-17 Thread Audrius Kažukauskas
On Mon, 2012-12-17 at 11:54:20 -0800, Gabriel Pozo wrote: I am a new user of sqlalchemy, I need to know how I can filter the weekdays, to exclude Saturdays and Sundays. I look for something similar to the function dayofweek of MySQL. In SQLAchemy you can refer to DB functions via func[0]