vote up 2 vote down star

Is there a way in MySQL to select rows which fall on a specific day, as in Mondays, using a date column?

flag

3 Answers

vote up 7 vote down check

MySQL DAYOFWEEK function.

E.g. to select Mondays:

SELECT * FROM foo WHERE DAYOFWEEK(bar) = 2
link|flag
This will probably result in this query turning into a full table scan, as the db will need to run dayofweek() on all rows before it knows which of them match the condition. Consider storing the day of the week explicitly in another column if this table is big. – Jon Topper Nov 20 '08 at 17:00
vote up 1 vote down

I assume you mean a specific Week Day Name, yes there is:

In mysql you can use DAYOFWEEK() - check the manual

In PHP you can use getdate() and for example do:

$date = getdate(); $weekday = $date[weekday]; - check the manual

link|flag
vote up 2 vote down

Look up the DAYOFWEEK() function here in the MySQL Online Docs

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.