9 lines
304 B
MySQL
9 lines
304 B
MySQL
|
begin;
|
||
|
-- insert some missing parks
|
||
|
insert into parks values
|
||
|
('ARL03', 'Globe Life Field', null, 'Arlington', 'TX', 'US'),
|
||
|
('BUF05', 'Sahlen Field', null, 'Buffalo', 'NY', 'US'),
|
||
|
('DUN01', 'TD Ballpark', null, 'Dunedin', 'FL', 'US'),
|
||
|
('DYE01', 'Field of Dreams', null, 'Dyersville', 'IA', 'US');
|
||
|
commit;
|