fill other tables

This commit is contained in:
Johannes Jöns 2024-02-08 22:40:14 +01:00
parent 18a94f91ba
commit ec9acacaa2

View file

@ -557,3 +557,158 @@ CREATE SupplierContainsIngredients CONTENT {
supplier: 'Supplier:103',
ingredient: 'Ingredient:6300'
};
CREATE Order:3001 CONTENT {
invoice_amount: 25.50,
order_date: '2024-02-08T10:00:00',
customer: 'Customer:2001',
};
CREATE Order:3002 CONTENT {
invoice_amount: 35.80,
order_date: '2024-02-08T11:30:00',
customer: 'Customer:2002',
};
CREATE Order:3003 CONTENT {
invoice_amount: 42.60,
order_date: '2024-02-08T13:15:00',
customer: 'Customer:2003',
};
CREATE Order:3004 CONTENT {
invoice_amount: 18.90,
order_date: '2024-02-08T14:45:00',
customer: 'Customer:2004',
};
CREATE Order:3005 CONTENT {
invoice_amount: 50.25,
order_date: '2024-02-08T16:20:00',
customer: 'Customer:2005',
};
CREATE OrderContainsIngredients CONTENT {
quantity: 2,
order: 'Order:3001',
ingredient: 'Ingredient:1001',
};
CREATE OrderContainsIngredients CONTENT {
quantity: 3,
order: 'Order:3001',
ingredient: 'Ingredient:1002',
};
CREATE OrderContainsIngredients CONTENT {
quantity: 1,
order: 'Order:3002',
ingredient: 'Ingredient:1003',
};
CREATE OrderContainsIngredients CONTENT {
quantity: 4,
order: 'Order:3002',
ingredient: 'Ingredient:1004',
};
CREATE OrderContainsIngredients CONTENT {
quantity: 2,
order: 'Order:3003',
ingredient: 'Ingredient:1005',
};
CREATE Recipe:4001 CONTENT {
preparation_time: 30,
name: 'Zucchini Pasta',
description: 'A delicious and healthy pasta dish made with fresh zucchini and flavorful ingredients.',
instructions: '1. Spiralize the zucchini into noodles. 2. Heat olive oil in a pan and sauté minced garlic until fragrant. 3. Add the zucchini noodles and cook until tender. 4. Season with salt, pepper, and any desired herbs. 5. Serve hot with grated Parmesan cheese on top.',
};
CREATE Recipe:4002 CONTENT {
preparation_time: 45,
name: 'Tomato Basil Salad',
description: 'A refreshing salad bursting with flavors of ripe tomatoes and fragrant basil.',
instructions: '1. Slice the tomatoes into thin rounds and arrange them on a serving platter. 2. Tear fresh basil leaves and scatter them over the tomatoes. 3. Drizzle with extra virgin olive oil and balsamic vinegar. 4. Season with salt and pepper to taste. 5. Let the salad marinate for at least 30 minutes before serving.',
};
CREATE Recipe:4003 CONTENT {
preparation_time: 40,
name: 'Roasted Vegetable Medley',
description: 'A colorful and nutritious medley of roasted vegetables, perfect as a side dish or main course.',
instructions: '1. Preheat the oven to 400°F (200°C). 2. Chop assorted vegetables such as carrots, bell peppers, and onions into bite-sized pieces. 3. Toss the vegetables with olive oil, minced garlic, and your favorite herbs. 4. Spread the vegetables on a baking sheet in a single layer. 5. Roast in the oven for 25-30 minutes until tender and slightly caramelized. 6. Serve hot as a side dish or with crusty bread for a satisfying meal.',
};
CREATE Recipe:4004 CONTENT {
preparation_time: 60,
name: 'Mozzarella Caprese',
description: 'A classic Italian appetizer featuring fresh tomatoes, creamy mozzarella, and fragrant basil.',
instructions: '1. Slice ripe tomatoes and fresh mozzarella cheese into thin rounds. 2. Arrange alternating slices of tomatoes and mozzarella on a serving platter. 3. Tuck fresh basil leaves between the slices. 4. Drizzle extra virgin olive oil over the top and sprinkle with salt and pepper. 5. Serve immediately as a light and refreshing appetizer.',
};
CREATE Recipe:4005 CONTENT {
preparation_time: 45,
name: 'Creamy Potato Leek Soup',
description: 'A comforting and creamy soup made with tender potatoes and flavorful leeks.',
instructions: '1. Heat butter in a large pot over medium heat. 2. Add chopped leeks and cook until softened. 3. Stir in diced potatoes and vegetable broth. 4. Bring to a boil, then reduce heat and simmer until potatoes are tender. 5. Use an immersion blender to puree the soup until smooth. 6. Stir in heavy cream and season with salt and pepper. 7. Serve hot, garnished with fresh chives if desired.',
};
CREATE RecipeContainsIngredients CONTENT {
amount: 2,
recipe: 'Recipe:4001',
ingredient: 'Ingredient:1001',
};
CREATE RecipeContainsIngredients CONTENT {
amount: 1,
recipe: 'Recipe:4001',
ingredient: 'Ingredient:1002',
};
CREATE RecipeContainsIngredients CONTENT {
amount: 3,
recipe: 'Recipe:4002',
ingredient: 'Ingredient:1003',
};
CREATE RecipeContainsIngredients CONTENT {
amount: 2,
recipe: 'Recipe:4002',
ingredient: 'Ingredient:1004',
};
CREATE RecipeContainsIngredients CONTENT {
amount: 2,
recipe: 'Recipe:4003',
ingredient: 'Ingredient:1005',
};
CREATE RecipeContainsIngredients CONTENT {
amount: 3,
recipe: 'Recipe:4003',
ingredient: 'Ingredient:1006',
};
CREATE RecipeContainsIngredients CONTENT {
amount: 4,
recipe: 'Recipe:4004',
ingredient: 'Ingredient:1007',
};
CREATE RecipeContainsIngredients CONTENT {
amount: 1,
recipe: 'Recipe:4004',
ingredient: 'Ingredient:1008',
};
CREATE RecipeContainsIngredients CONTENT {
amount: 2,
recipe: 'Recipe:4005',
ingredient: 'Ingredient:1009',
};
CREATE RecipeContainsIngredients CONTENT {
amount: 1,
recipe: 'Recipe:4005',
ingredient: 'Ingredient:1010',
};