SET DATEFIRST (Transact-SQL)
週の最初の曜日を 1 ~ 7 の数値で設定します。
Transact-SQL の日付と時刻のデータ型および関数すべての概要については、「日付と時刻の関数 (Transact-SQL)」を参照してください。日付と時刻のデータ型および関数の一般的な例については、「日時データの使用」を参照してください。
構文
SET DATEFIRST { number | @number_var }
引数
number | **@**number_var
週の最初の曜日を示す整数値を指定します。次の値のいずれかです。値
週の最初の曜日
1
月曜日
2
火曜日
3
水曜日
4
木曜日
5
金曜日
6
土曜日
7 (既定値)
日曜日
権限
public ロールのメンバシップが必要です。
例
次の例では、日付値に対応する曜日を表示し、DATEFIRST の設定を変更した場合の影響を示しています。
-- SET DATEFIRST to U.S. English default value of 7.
SET DATEFIRST 7;
SELECT CAST('1999-1-1' AS datetime2) AS SelectDate
,DATEPART(dw, '1999-1-1') AS DayOfWeek;
-- January 1, 1999 is a Friday. Because the U.S. English default
-- specifies Sunday as the first day of the week, DATEPART of 1999-1-1
-- (Friday) yields a value of 6, because Friday is the sixth day of the
-- week when you start with Sunday as day 1.
SET DATEFIRST 3;
-- Because Wednesday is now considered the first day of the week,
-- DATEPART now shows that 1999-1-1 (a Friday) is the third day of the
-- week. The following DATEPART function should return a value of 3.
SELECT CAST('1999-1-1' AS datetime2) AS SelectDate
,DATEPART(dw, '1999-1-1') AS DayOfWeek;
GO