I'm trying to insert values to a table, but it kept giving me error msg saying the command not properly ended. I checked again and again, I don't see I miss any comma, semicoma, and the table name is correct (I also checked again and again), all column names are correct and in right order too (I checked it again and again too), and the spell of the command is also correct. So what's wrong with my code?
insert into fruits (fid,fname,quantities)
values (1,'apple',3),
(2,'orange',2),
(3,'banana',5);