Is there a way in MySQL to select rows which fall on a specific day, as in Mondays, using a date column?
|
|
|
||
|
|
|
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 |
||
|
|
|
|
Look up the DAYOFWEEK() function here in the MySQL Online Docs |
||
|
|
