Funkcja MySQL YEARWEEK()
Przykład
Zwróć rok i numer tygodnia dla daty:
SELECT YEARWEEK("2017-06-15");
Definicja i użycie
Funkcja YEARWEEK() zwraca numer roku i tygodnia (liczba od 0 do 53) dla podanej daty.
Składnia
YEARWEEK(date, firstdayofweek)
Wartości parametrów
Parameter | Description |
---|---|
date | Required. The date or datetime value to extract the year and week number from |
firstdayofweek |
Optional. Specifies what day the week starts on. Can be one of the following:
|
Szczegóły techniczne
Pracuje w: | Z MySQL 4.0 |
---|
Więcej przykładów
Przykład
Zwróć rok i numer tygodnia dla daty:
SELECT YEARWEEK("2017-10-25");
Przykład
Zwróć rok i numer tygodnia dla bieżącej daty systemowej:
SELECT YEARWEEK(CURDATE());