changes Geburtsdatum to date_of_birth

This commit is contained in:
2023-10-11 07:10:52 +02:00
parent 1d56372674
commit 5b67db9779
2 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
INSERT INTO composer (id, first_name, name, Geburtsdatum, Sterbedatum)
INSERT INTO composer (id, first_name, name, date_of_birth, Sterbedatum)
VALUES
(1, "Johann Sebastian", "Bach", 16850331, 17500728),
(2, "Ludwig van", "Beethoven", 17701217, 18270326),
@@ -7,7 +7,7 @@ VALUES
(5, "Robert", "Schumann", 18100608, 18560729)
;
INSERT INTO composer (id, first_name, name, Geburtsdatum, Sterbedatum)
INSERT INTO composer (id, first_name, name, date_of_birth, Sterbedatum)
VALUES
(6, 'Felix', 'Mendelssohn Bartholdy', 18090203, 18471104)
;