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 Aerolinea; | |
| USE Aerolinea; | |
| CREATE TABLE Avion | |
| ( | |
| codigo INT NOT NULL PRIMARY KEY, | |
| marca VARCHAR(50) NOT NULL, | |
| estado VARCHAR(20) NOT NULL | |
| ); |
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
| USE Libreria; | |
| INSERT INTO Articulos (Codigo_Articulo, Articulo, Precio) VALUES | |
| ("1-0023_D", "Auriculares Inalambricos", 175), | |
| ("2-0023_D", "Teclado Inalambrico", 245), | |
| ("3-0023_D", "Mini adaptador USB-C USB 2.0", 75), | |
| ("4-0023_D", "Cable Red UTP RJ45", 90), | |
| ("5-0023_D", "Camara Web USB", 165); | |
| INSERT INTO Localidad (Codigo_Postal, Localidad) VALUES |