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
-- inserts | |
---- Produkt | |
insert into Ue14_Produkt (prodNr, prodBez) VALUES (1, 'Zanderfilet'); | |
insert into Ue14_Produkt (prodNr, prodBez) VALUES (2, 'Milchrahmstrudel'); | |
insert into Ue14_Produkt (prodNr, prodBez) VALUES (3, 'Pizzabrötchen'); | |
insert into Ue14_Produkt (prodNr, prodBez) VALUES (4, 'Chicken Nuggets'); | |
---- Produktpreis | |
insert into Ue14_Produktpreis (prodNr, vonDatum, prodPreis) values (1, to_date('30.06.01','DD.MM.YY'), 180); | |
insert into Ue14_Produktpreis (prodNr, vonDatum, prodPreis) values (1, to_date('01.01.02','DD.MM.YY'), 190); |