後の例で使用するテーブルを作成して、データを取り込みます。
CREATE TABLE order_table ( orderID INTEGER, customer VARCHAR(50), price INTEGER); CREATE MULTISET TABLE item_table ( orderID INTEGER, itemID INTEGER, itemName VARCHAR(50), amount INTEGER); INSERT INTO order_table(1, 'Teradata', 1000); INSERT INTO order_table(2, 'Teradata', 10000); INSERT INTO order_table(3, 'Apple', 100000); INSERT INTO item_table(1, 1, 'disk', 100); INSERT INTO item_table(1, 2, 'RAM', 200); INSERT INTO item_table(2, 1, 'disk', 10); INSERT INTO item_table(2, 2, 'RAM', 20); INSERT INTO item_table(2, 3, 'monitor', 30); INSERT INTO item_table(2, 4, 'keyboard', 40); INSERT INTO item_table(3, 1, 'disk', 10); INSERT INTO item_table(3, 2, 'RAM', 20); INSERT INTO item_table(3, 3, 'monitor', 30); INSERT INTO item_table(3, 4, 'keyboard', 40); INSERT INTO item_table(3, 5, 'camera', 50); INSERT INTO item_table(3, 6, 'button', 60); INSERT INTO item_table(3, 7, 'mouse', 70); INSERT INTO item_table(3, 8, 'pen', 80);