RE: SELECT by day

2009-09-29 Thread Rolando Edwards
SELECT * FROM `table_anw` WHERE DAYOFWEEK(datum) = 3; SELECT * FROM `table_anw` WHERE WEEKDAY(datum) = 2; SELECT * FROM `table_anw` WHERE DAYNAME(datum) = 'Tuesday'; SELECT * FROM `table_anw` WHERE DATE_FORMAT(datum,'%W') = 'Tuesday'; SELECT * FROM `table_anw` WHERE DATE_FORMAT(datum,'%a') = 'Tue'

RE: SELECT by day

2009-09-29 Thread Scott Swaim
Try this SELECT * FROM `table_anw` WHERE DAYOFWEEK(datum) = 3; Scott Swaim I.T. Director Total Care / Joshua Family Medical Care (817) 297-4455 Website: www.totalcareclinic.com NOTICE: The information contained in this e-mail is privileged and confidential and is intended for the exclusive u

Re: SELECT by day

2009-09-29 Thread Jo�o C�ndido de Souza Neto
Have you tried this? SELECT * FROM `table_anw` WHERE DAYOFWEEK(datum) = 3; "Kerstin Finke" escreveu na mensagem news:20090929130406.9802.qm...@lists.mysql.com... > Hi, > I want to search all rows with datum = 'tuesday' for example, something > like: > > SELECT * FROM `table_anw` WHERE datum=DA