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 DATABASE empresa; | |
USE empresa; | |
CREATE TABLE empleados ( | |
id INT AUTO_INCREMENT PRIMARY KEY, | |
identificacion VARCHAR(20), | |
nombre VARCHAR(100), | |
horas_trabajadas FLOAT, | |
sueldo_por_hora FLOAT |