Just a few simple lines to add flat league end data

INSERT INTO flatbowlerTBL
(bowler_name, avg, numgames, thundo, thundopct, team_id, division_id, league_id)
VALUES ('Badger', 208.8, 21, 19, 93.2, 4, 6, 2),
('Viking', 202.3, 20, 19, 85.5, 5, 4, 2),
('The Fuge', 162, 18, 4, 12.7, 6, 7, 2),
('The Cleaner', 168, 17, 2, 8.9, 8, 5, 2);


rows inserted successfully!