sql >> Base de Datos >  >> RDS >> Mysql

PHP y MySQL:Comparación de mes y día con año dinámico

Puede usar MySQL date_format función al comprobar la fecha.

Por ejemplo:

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

Entonces, puede verificar con un intervalo simple:hoy es 0518 y es entre el 2 de febrero y el 31 de mayo:

Ejemplo 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)

Ejemplo de consulta:

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)

EDITAR :

Lea su comentario sobre la respuesta de @FelipeDuarte... Para el período del 01/10 (1 de octubre) al 01/02 (1 de febrero), debemos considerar el nuevo año...

Puedes hacer trampa dividiendo el período en dos:01/10 al 31/12 y 01/01 al 01/02