Skip to content

Commit 6c35c7f

Browse files
committed
Merge branch 'alosslessdev' of https://github.com/alosslessdev/Lab6DS4 into alosslessdev
2 parents 823e2a1 + ac1c33d commit 6c35c7f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Libreria BD.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ create table Libros(
77
id INT IDENTITY PRIMARY KEY,
88
Titulo varchar(30) NOT NULL,
99
Autor varchar (30) NOT NULL,
10-
Cantidad_Disponible INT NOT NULL,
10+
CantidadDisponible INT NOT NULL,
1111
);
12-
INSERT INTO Libros(Titulo, Autor, Cantidad_Disponible)
13-
Values ('Señor de los anillos', 'J.R.R Tolkien', 5),
12+
INSERT INTO Libros(Titulo, Autor, CantidadDisponible)
13+
Values ('Señor de los anillos', 'J.R.R Tolkien', 5),
1414
('AOT', 'Hajime Isayama', 23),
1515
('Dune', 'Frank Herbert', 42),
1616
('Metro 2033', 'Dmitri Glujovski', 33),
1717
('Berserk','Kentaro Miura',19)
18-
select* FROM Libros
18+
select* FROM Libros

0 commit comments

Comments
 (0)