How to mass insert data into a table via mySQL.
INSERT INTO table_name_goes_here(
group_id,
parent_id,
type,
name)
VALUES(
'1',
'2',
'option',
'Aaron Rodgers'
),
(
'1',
'2',
'option',
'
)
Or just add one item
INSERT INTO NFL2010_ProjectedStats(`player`,`pos`,`team`,`p-yds`,`p-td`,`int`,`ru-yds`,`ru-td`,`rec`,`re-yds`,`re-td`,`bonus`)VALUES('Kareem Huggins','RB','TB','0','0','0','500','2','35','350','1','0')