[Solved] Creating a database table (MySQL)

You should take a look at the mysql manual to learn about creating databases/tables: Create Table Syntax there are also examples of how to create tables. Edit: you can do either: INSERT INTO recipe (name, category) VALUES (‘Recipename’, ‘Categoryname’); since you only specify the columns where you want to add data or INSERT INTO recipe … Read more