Created
September 6, 2022 16:01
-
-
Save codigoconjuan/ee04c6b6914bf2dd2725975a20fb278c to your computer and use it in GitHub Desktop.
Gist Base de Datos Paquetes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE `paquetes` ( | |
| `id` int NOT NULL AUTO_INCREMENT, | |
| `nombre` varchar(30) DEFAULT NULL, | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; | |
| INSERT INTO `paquetes` (`id`, `nombre`) VALUES | |
| (1, 'Presencial'), | |
| (2, 'Virtual'), | |
| (3, 'Gratis'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment