I am currently trying to insert the values in the database table, the database that I have created shows like this:
recipeid - int (Primary key) NOT NULL
recipename - varchar(80)
reciperating - int
recipephoto - longtext
However, when I try to issue the sql statement as shown below:
(insert into userRecipeInfo values('Fried rice',4,'https://i.guim.co.uk/img/media/03734ee186eba543fb3d0e35db2a90a14a5d79e3/0_173_5200_3120/master/5200.jpg?width=1200&height=900')
The error message shows this instead:
Column count doesn't match value count at row 1
I would like to know on what caused this error. Thanks!