Page 23 - Portafolio
P. 23

`domicilio` char(25) DEFAULT NULL,
                  `ciudad` tinytext DEFAULT NULL,
                  `numero` char(25) DEFAULT NULL,
                  `calle` char(25) DEFAULT NULL,
                  PRIMARY KEY (`telefono`)
                ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

                -- Volcando datos para la tabla cadena de deportes.empleado: ~5 rows
                (aproximadamente)
                DELETE FROM `empleado`;
                /*!40000 ALTER TABLE `empleado` DISABLE KEYS */;
                INSERT INTO `empleado` (`telefono`, `domicilio`, `ciudad`, `numero`,
                `calle`) VALUES
                       ('63254681', NULL, 'potrerillo', '2733', NULL),
                       ('63726463', NULL, 'pedregal', '8213', NULL),
                       ('64356252', NULL, 'bugaba', '2737', NULL),
                       ('68439041', NULL, 'david', '2893', 'cuarta'),
                       ('69100288', NULL, 'via clara', '3127', NULL);
                /*!40000 ALTER TABLE `empleado` ENABLE KEYS */;

                -- Volcando estructura para tabla cadena de deportes.fabrica
                CREATE TABLE IF NOT EXISTS `fabrica` (
                  `CUIT` char(15) NOT NULL,
                  `nombre` tinytext DEFAULT NULL,
                  `país` tinytext DEFAULT NULL,
                  `gerente` tinytext DEFAULT NULL,
                  `cantEmp` char(15) DEFAULT NULL,
                  PRIMARY KEY (`CUIT`)
                ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

                -- Volcando datos para la tabla cadena de deportes.fabrica: ~4 rows
                (aproximadamente)
                DELETE FROM `fabrica`;
                /*!40000 ALTER TABLE `fabrica` DISABLE KEYS */;
                INSERT INTO `fabrica` (`CUIT`, `nombre`, `país`, `gerente`, `cantEmp`)
                VALUES
                       ('092384878', 'Inversiones Int', 'peru', 'Ricardo', '150'),
                       ('09823849', 'Intel corp', 'panama', 'Diego', '200'),
                       ('912839', 'FEDURO', 'colombia', 'Eduardo', '175'),
                       ('9823847', 'Nissan', 'costa rica', 'Jaime', '150');
                /*!40000 ALTER TABLE `fabrica` ENABLE KEYS */;

                -- Volcando estructura para tabla cadena de deportes.producto
                CREATE TABLE IF NOT EXISTS `producto` (
                  `codigo` varchar(15) NOT NULL,
                  `descripcion` tinytext DEFAULT NULL,
                  `color` tinytext DEFAULT NULL,
                  `costo` char(20) DEFAULT NULL,
                  PRIMARY KEY (`codigo`)
                ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

                -- Volcando datos para la tabla cadena de deportes.producto: ~6 rows
                (aproximadamente)
                DELETE FROM `producto`;
   18   19   20   21   22   23   24   25   26   27   28