INSERT INTO `keywords` (`slno`, `keyword`) VALUES
(1, 'test'),
(2, 'test1');
there are many many ways
for example write a sql in this format
else use the import fucntion to import it from excel or other support formats like csv..just see which suits you mostPHP:INSERT INTO `keywords` (`slno`, `keyword`) VALUES (1, 'test'), (2, 'test1');
LOAD DATA INFILE 'exceldata.csv' INTO TABLE tablename
FIELDS TERMINATED BY ',' ENCLOSED BY '"' ESCAPED BY '\\'
LINES TERMINATED BY '\r\n'