This is my create table syntax:
Create table Recipe(
Recipename varchar(30),
Cuisine varchar(20),
Skilllevel varchar(13),
Ingredients varchar(400),
Procedure varchar(1000),
Cookingtime int(30),
Category varchar(10),
Restrictions varchar(15)
);
I'm not able to identify the error in this. Please do help. Thanks
Procedureis a reserved word. Need another name or surround it with backticks.