DAYOFWEEK
Return the weekday index. This function returns a number from 1 (Sunday) to 7 (Saturday) representing the day of the week.
Syntax
DAYOFWEEK(date)Description
Examples
SELECT DAYOFWEEK('2007-02-03');
+-------------------------+
| DAYOFWEEK('2007-02-03') |
+-------------------------+
| 7 |
+-------------------------+CREATE TABLE t1 (d DATETIME);
INSERT INTO t1 VALUES
("2007-01-30 21:31:07"),
("1983-10-15 06:42:51"),
("2011-04-21 12:34:56"),
("2011-10-30 06:31:41"),
("2011-01-30 14:03:25"),
("2004-10-07 11:19:34");Last updated
Was this helpful?

