From cf5b772cdd7218df6499b22d24329eb17f5403fd Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Sun, 6 Jun 2021 23:35:29 +0800 Subject: [PATCH] More fruits --- examples/bakery.sql | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/examples/bakery.sql b/examples/bakery.sql index e6352db5..3ea83fa8 100644 --- a/examples/bakery.sql +++ b/examples/bakery.sql @@ -24,6 +24,14 @@ INSERT INTO `fruit` (`id`, `name`, `cake_id`) VALUES (2, 'Rasberry', 1), (3, 'Strawberry', 2); +INSERT INTO `fruit` (`name`, `cake_id`) VALUES + ('Apple', NULL), + ('Banana', NULL), + ('Cherry', NULL), + ('Lemon', NULL), + ('Orange', NULL), + ('Pineapple', NULL); + DROP TABLE IF EXISTS `filling`; CREATE TABLE `filling` (