Esercitazione MySQL

MySQL HOME Introduzione a MySQL MySQL RDBMS

MySQL SQL

MySQL SQL SELEZIONA MySQL MySQL DOVE MySQL E, O, NON MySQL ORDINA PER MySQL INSERT IN Valori NULL MySQL AGGIORNAMENTO MySQL MySQL DELETE LIMITE MySQL MySQL MIN e MAX MySQL COUNT, MEDIO, SOMMA MySQL MI PIACE Caratteri jolly MySQL MySQL IN MySQL TRA alias MySQL MySQL si unisce MySQL INNER JIN MySQL ha lasciato il join MySQL GIUSTO UNISCITI MySQL CROSS JIN MySQL Self Join MySQL UNION MySQL GRUPPO PER MySQL AVENDO MySQL ESISTE MySQL QUALSIASI, TUTTO SELEZIONA INSERTO MySQL CASO MySQL Funzioni null di MySQL Commenti MySQL Operatori MySQL

Database MySQL

MySQL Crea DB MySQL Drop DB MySQL Crea tabella MySQL Drop Table MySQL Alter tabella Vincoli MySQL MySQL non nullo MySQL unico Chiave primaria MySQL Chiave esterna MySQL Controllo MySQL MySQL predefinito MySQL Crea indice Incremento automatico di MySQL Date MySQL Viste MySQL

Riferimenti MySQL

Tipi di dati MySQL Funzioni MySQL

Esempi MySQL

Esempi MySQL Quiz MySQL Esercizi MySQL

MySQL YEARWEEK() Funzione

❮ Funzioni MySQL

Esempio

Restituisci il numero dell'anno e della settimana per una data:

SELECT YEARWEEK("2017-06-15");

Definizione e utilizzo

La funzione SETTIMANA ANNO() restituisce l'anno e il numero della settimana (un numero compreso tra 0 e 53) per una determinata data.

Sintassi

YEARWEEK(date, firstdayofweek)

Valori dei parametri

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:

  • 0 - First day of week is Sunday
  • 1 - First day of week is Monday and the first week has more than 3 days
  • 2 - First day of week is Sunday
  • 3 - First day of week is Monday and the first week has more than 3 days
  • 4 - First day of week is Sunday and the first week has more than 3 days
  • 5 - First day of week is Monday
  • 6 - First day of week is Sunday and the first week has more than 3 days
  • 7 - First day of week is Monday

Dettagli tecnici

Funziona in: Da MySQL 4.0

Altri esempi

Esempio

Restituisci il numero dell'anno e della settimana per una data:

SELECT YEARWEEK("2017-10-25");

Esempio

Restituisce il numero dell'anno e della settimana per la data di sistema corrente:

SELECT YEARWEEK(CURDATE());

❮ Funzioni MySQL