MySQL WEEK()関数
例
日付の週番号を返します。
SELECT WEEK("2017-06-15");
定義と使用法
WEEK()関数は、指定された日付の週番号(0から53までの数値)を返します。
構文
WEEK(date, firstdayofweek)
パラメータ値
Parameter | Description |
---|---|
date | Required. The date or datetime to extract the week number form |
firstdayofweek |
Optional. Specifies what day the week starts on. Can be one of the following:
|
技術的な詳細
で動作します: | MySQL4.0から |
---|
その他の例
例
日付の週番号を返します。
SELECT WEEK("2017-10-25");
例
現在のシステム日付の週番号を返します。
SELECT WEEK(CURDATE());