update
This commit is contained in:
9
uebung/crud-1.sql
Normal file
9
uebung/crud-1.sql
Normal file
@ -0,0 +1,9 @@
|
||||
# [Aufgabe]: Daten verwalten
|
||||
|
||||
insert into locations (title, address) values ('Hauptbahnhof', 'Hauptbahnhof 1, 60329 Frankfurt am Main');
|
||||
|
||||
update locations set address = replace(address, 'Domkloster 1', 'Domkloster 4') where title = 'Buchhandlung Dom';
|
||||
|
||||
delete from locations where title = 'Buchhandlung Alexanderplatz';
|
||||
|
||||
insert into locations (title, address) values ('Buchhandlung Flughafen BER', 'Melli-Beese-Ring 1, 12529 Schönefeld, Deutschland');
|
Reference in New Issue
Block a user