* JAVA-13870 Move spring-caching,spring-caching-2 to spring-boot-modules (conti-1) * JAVA-13870 Making spring boot as the parent for spring-caching and spring caching-2 --------- Co-authored-by: timis1 <noreplay@yahoo.com>
7 lines
244 B
SQL
7 lines
244 B
SQL
INSERT INTO CUSTOMER VALUES(1001,'BAELDUNG');
|
|
|
|
INSERT INTO ITEM VALUES(10001,'ITEM1',50.0);
|
|
INSERT INTO ITEM VALUES(10002,'ITEM2',100.0);
|
|
|
|
INSERT INTO ORDERDETAIL VALUES(300001,1001,10001,2);
|
|
INSERT INTO ORDERDETAIL VALUES(300002,1001,10002,5); |