Curriculum
Course: SQL
Login

Curriculum

SQL

SQL References

0/80

MySQL Functions

0/139

SQL Server Functions

0/84

SQL Quick Ref

0/1
Text lesson

Weekday

Example

Retrieve the numeric representation of the weekday for a given date.

SELECT Weekday(#05/17/2017#);

Definition and Usage

The Weekday() function retrieves the weekday number corresponding to a given date, returning an integer between 1 and 7.

Syntax

Weekday(datefirstdayofweek)

Parameter Values

Parameter

Description

date

Required. A date value that is considered valid.

firstdayofweek

Optional. Specifies the starting day of the week with the following options:

  • 0: Use the NLS API setting
  • 1: Sunday (default)
  • 2: Monday
  • 3: Tuesday
  • 4: Wednesday
  • 5: Thursday
  • 6: Friday
  • 7: Saturday

 

Technical Details

WORKS IN

From Access 2000

More Examples

Example

Retrieve the weekday number corresponding to the current date.

SELECT Weekday(Date());

Example

Retrieve the weekday number for the specified date, with Monday set as the first day of the week.

SELECT Weekday(#05/17/2017#, 2);