2024-02-01 04:43:23 +00:00
|
|
|
pragma foreign_keys = 0;
|
|
|
|
|
2024-01-28 00:05:45 +00:00
|
|
|
begin;
|
2024-01-31 06:09:39 +00:00
|
|
|
attach database 'baseball-raw.db' as 'raw';
|
|
|
|
create temp table if not exists "seasons" (
|
2024-01-28 00:05:45 +00:00
|
|
|
"year" text
|
|
|
|
);
|
2024-01-28 01:39:35 +00:00
|
|
|
|
2024-01-31 06:09:39 +00:00
|
|
|
insert into seasons select distinct yearID from "raw".appearances;
|
|
|
|
|
|
|
|
create table if not exists main."seasons" (
|
|
|
|
"year" numeric,
|
|
|
|
primary key("year")
|
|
|
|
);
|
|
|
|
|
|
|
|
insert into main.seasons
|
|
|
|
select distinct * from temp."seasons";
|
2024-01-28 00:05:45 +00:00
|
|
|
commit;
|