SQLite
 sql >> Database >  >> RDS >> SQLite

Restituisci il primo lunedì di ogni mese in SQLite

Possiamo usare DATE() di SQLite funzione per restituire il primo lunedì di ogni mese per un determinato anno, in base alla data da noi fornita.

Ma non è limitato a lunedì. Possiamo anche ottenere il primo martedì, mercoledì, giovedì, venerdì, ecc. di ogni mese.

Esempio

In alternativa, possiamo utilizzare un codice come il seguente per restituire il primo lunedì di ogni mese durante tutto l'anno:

SELECT 
    DATE('2025-10-20', 'start of year', 'weekday 1') AS "Jan",
    DATE('2025-10-20', 'start of year', '+1 month', 'weekday 1') AS "Feb",
    DATE('2025-10-20', 'start of year', '+2 months', 'weekday 1') AS "Mar",
    DATE('2025-10-20', 'start of year', '+3 months', 'weekday 1') AS "Apr",
    DATE('2025-10-20', 'start of year', '+4 months', 'weekday 1') AS "May",
    DATE('2025-10-20', 'start of year', '+5 months', 'weekday 1') AS "Jun",
    DATE('2025-10-20', 'start of year', '+6 months', 'weekday 1') AS "Jul",
    DATE('2025-10-20', 'start of year', '+7 months', 'weekday 1') AS "Aug",
    DATE('2025-10-20', 'start of year', '+8 months', 'weekday 1') AS "Sep",
    DATE('2025-10-20', 'start of year', '+9 months', 'weekday 1') AS "Oct",
    DATE('2025-10-20', 'start of year', '+10 months', 'weekday 1') AS "Nov",
    DATE('2025-10-20', 'start of year', '+11 months', 'weekday 1') AS "Dec";

Risultato:

Jan         Feb         Mar         Apr         May         Jun         Jul         Aug         Sep         Oct         Nov         Dec       
----------  ----------  ----------  ----------  ----------  ----------  ----------  ----------  ----------  ----------  ----------  ----------
2025-01-06  2025-02-03  2025-03-03  2025-04-07  2025-05-05  2025-06-02  2025-07-07  2025-08-04  2025-09-01  2025-10-06  2025-11-03  2025-12-01

Qui chiamiamo DATE() funzione dodici volte. Usiamo ogni volta la stessa data e la maggior parte degli argomenti sono gli stessi. L'unica cosa che cambia è quanto aggiungiamo all'inizio dell'anno.

Usiamo start of year per riportare la data al primo giorno dell'anno. Utilizziamo quindi modificatori aggiuntivi per modificare tale data di conseguenza.

Quando non aggiungiamo mesi alla data, restituiamo il primo lunedì di gennaio. Aggiunta di +1 month ritorna il primo lunedì di febbraio e così via.

Il weekday 1 modificatore sposta la data in avanti al lunedì successivo. La domenica è 0, lunedì è 1, martedì è 2 e così via, quindi se volessimo martedì, ad esempio, useremmo weekday 2 invece.

Utilizzo della data corrente

L'esempio seguente utilizza la data corrente:

SELECT 
    DATE('now') AS "Now",
    DATE('now', 'start of year', 'weekday 1') AS "Jan",
    DATE('now', 'start of year', '+1 month', 'weekday 1') AS "Feb",
    DATE('now', 'start of year', '+2 months', 'weekday 1') AS "Mar",
    DATE('now', 'start of year', '+3 months', 'weekday 1') AS "Apr",
    DATE('now', 'start of year', '+4 months', 'weekday 1') AS "May",
    DATE('now', 'start of year', '+5 months', 'weekday 1') AS "Jun",
    DATE('now', 'start of year', '+6 months', 'weekday 1') AS "Jul",
    DATE('now', 'start of year', '+7 months', 'weekday 1') AS "Aug",
    DATE('now', 'start of year', '+8 months', 'weekday 1') AS "Sep",
    DATE('now', 'start of year', '+9 months', 'weekday 1') AS "Oct",
    DATE('now', 'start of year', '+10 months', 'weekday 1') AS "Nov",
    DATE('now', 'start of year', '+11 months', 'weekday 1') AS "Dec";

Risultato:

Now         Jan         Feb         Mar         Apr         May         Jun         Jul         Aug         Sep         Oct         Nov         Dec       
----------  ----------  ----------  ----------  ----------  ----------  ----------  ----------  ----------  ----------  ----------  ----------  ----------
2022-03-10  2022-01-03  2022-02-07  2022-03-07  2022-04-04  2022-05-02  2022-06-06  2022-07-04  2022-08-01  2022-09-05  2022-10-03  2022-11-07  2022-12-05