scouter/database-scripts/viable_weather.sql

37 lines
No EOL
629 B
SQL

insert into main.viable_weather (moon_id, weather_id)
values (1, 1),
(1, 2),
(1, 4),
(1, 5),
(1, 6),
(1, 3),
(2, 1),
(2, 2),
(2, 3),
(2, 5),
(2, 6),
(3, 1),
(3, 5),
(3, 3),
(3, 4),
(3, 6),
(4, 1),
(4, 2),
(4, 3),
(4, 6),
(4, 5),
(5, 1),
(5, 5),
(5, 3),
(5, 4),
(5, 6),
(6, 1),
(6, 3),
(6, 6),
(7, 1),
(7, 5),
(7, 6),
(8, 1),
(8, 3),
(8, 4),
(8, 6);