Mysql WEEKDAY() vs Mysql DayofWeek()
问题 I am trying to understand the both but I am getting really confused. Online it says: MySQL WEEKDAY() returns the index of the day in a week for a given date (0 for Monday, 1 for Tuesday and ......6 for Sunday). MySQL DAYOFWEEK() returns the week day number (1 for Sunday,2 for Monday …… 7 for Saturday ) for a date specified as argument. Can anyone explain with an example for both? Thank you. 回答1: A relevant difference is that weekday counts the days of the week from Monday, as follows and