Crear una tabla temporal con fechas en MySQL
Para crear una tabla temporal con fechas, utilice CREAR TABLA TEMPORAL en MySQL. La siguiente es la sintaxis:
Sintaxis
create temporary table yourTableName(
yourColumnName datetime
);
Primero creemos una tabla:
mysql> create temporary table DemoTable
-> (
-> DueDate datetime
-> );
Query OK, 0 rows affected (0.00 sec)
Inserte algunos registros en la tabla usando el comando insertar:
mysql> insert into DemoTable values(now());
Query OK, 1 row affected (0.00 sec)
mysql> insert into DemoTable values(curdate());
Query OK, 1 row affected (0.00 sec)
mysql> insert into DemoTable values('2018-01-21');
Query OK, 1 row affected (0.00 sec)
mysql> insert into DemoTable values('2019-12-31');
Query OK, 1 row affected (0.00 sec)
Muestre todos los registros de la tabla usando la declaración de selección:
mysql> select *from DemoTable;
Esto producirá el siguiente resultado:
+---------------------+
| DueDate |
+---------------------+
| 2019-10-27 18:07:41 |
| 2019-10-27 00:00:00 |
| 2018-01-21 00:00:00 |
| 2019-12-31 00:00:00 |
+---------------------+
4 rows in set (0.00 sec)