Collections:
DAYOFWEEK() - Day of Week (1=Sunday)
How to extract the day of week of a given date using the DAYOFWEEK() function?
✍: FYIcenter.com
DAYOFWEEK(date) is a MySQL built-in function that
returns the day of week from a given date.
For example:
SELECT DAYOFWEEK('2023-02-03'), DAYNAME('2023-02-03');
-- +-------------------------+-----------------------+
-- | DAYOFWEEK('2023-02-03') | DAYNAME('2023-02-03') |
-- +-------------------------+-----------------------+
-- | 6 | Friday |
-- +-------------------------+-----------------------+
SELECT DAYOFWEEK(NOW()), DAYNAME(NOW());
-- +------------------+----------------+
-- | DAYOFWEEK(NOW()) | DAYNAME(NOW()) |
-- +------------------+----------------+
-- | 3 | Tuesday |
-- +------------------+----------------+
Reference information of the DAYOFWEEK() function:
DAYOFWEEK(date): int Returns the weekday index for date (1 = Sunday, 2 = Monday, ..., 7 = Saturday). Arguments, return value and availability: date: Required. The date to extract the day of week from. int: Return value. The day of week. Available since MySQL 4.
Related MySQL functions:
2023-11-16, 963🔥, 0💬
Popular Posts:
How To Convert Numeric Values to Character Strings in MySQL? You can convert numeric values to chara...
Can Date and Time Values Be Converted into Integers in SQL Server Transact-SQL? Can date and time va...
How To Use SQL*Plus Built-in Timers in Oracle? If you don't have a stopwatch/timer and want to measu...
Where to find answers to frequently asked questions I am new to Oracle database. Here is a list of f...
How AdventureWorksLT tables are related in SQL Server? There are 12 user tables defined in Adventure...