| 1234567891011121314151617181920212223242526272829303132333435 |
- INSERT INTO ingredient (ingr_name,description) VALUES ('avocado',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('banana',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('chocolate chips (dark)',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('chocolate chips (milk)',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('cornmeal',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('cumin',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('dill',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('egg',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('fennel',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('flour (buckwheat)',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('flour (rye)',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('flour (white)',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('flour (whole wheat)',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('garlic',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('ice cube',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('leek',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('lemon',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('lime',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('milk (cow)',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('milk (soy)',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('milk (rice)',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('mozzarella',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('mushroom (white)',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('olive oil (extra virgin)',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('parchment paper',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('Parmesan',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('pepper',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('porcini (dried)',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('salt',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('vinegar (balsamic)',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('vinegar (champagne)',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('vinegar (red wine)',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('water',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('wine (white)',null);
- INSERT INTO ingredient (ingr_name,description) VALUES ('wine (red)',null);
|