HOW TO INSERT MULTIPLE VALUE TO MYSQL COLUMN code example
Example: insert multiple items in mysql
#Assuming that there is a database called MyDatabase
#The following adds items to a table called TableName with columns No., Age, and class
use MyDatabase;
insert into TableName(No., Name, Age, Class)
values(1, "VinCoD", 21, "4E");