Mysql
 sql >> Database >  >> RDS >> Mysql

PHP e MySQL:confronto di mese e giorno con l'anno dinamico

Puoi usare MySQL date_format funzione durante il controllo della data.

Ad esempio:

select date_format('2016-05-18', '%m%d');
+-----------------------------------+
| date_format('2016-05-18', '%m%d') |
+-----------------------------------+
| 0518                              |
+-----------------------------------+
1 row in set (0,01 sec)

Quindi, puoi semplicemente controllare con un semplice intervallo:oggi è 0518 e tra il 2 febbraio e il 31 maggio:

Esempio completo:

desc mytable;
+-----------+---------+------+-----+---------+-------+
| Field     | Type    | Null | Key | Default | Extra |
+-----------+---------+------+-----+---------+-------+
| date_from | char(4) | YES  |     | NULL    |       |
| date_to   | char(4) | YES  |     | NULL    |       |
| price     | int(11) | YES  |     | NULL    |       |
+-----------+---------+------+-----+---------+-------+
3 rows in set (0,00 sec)

select * from mytable;
+-----------+---------+-------+
| date_from | date_to | price |
+-----------+---------+-------+
| 0901      | 0930    |   100 |
| 1001      | 0201    |    80 |
| 0202      | 0531    |   100 |
| 0601      | 0701    |   120 |
+-----------+---------+-------+
4 rows in set (0,00 sec)

Esempio di query:

select price, date_from, date_to from mytable where date_format(now(), '%m%d') between date_from and date_to;
+-------+-----------+---------+
| price | date_from | date_to |
+-------+-----------+---------+
|   100 | 0202      | 0531    |
+-------+-----------+---------+
1 row in set (0,01 sec)

MODIFICA :

Leggi il tuo commento sulla risposta di @FelipeDuarte... Per il periodo dal 10/01 (1 ottobre) al 02/01 (1 febbraio), bisogna considerare il nuovo anno...

Puoi imbrogliare dividendo il periodo in due periodi:dal 01/10 al 31/12 e dal 01/01 al 01/02