You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- If you want to completely wipe the data...
-- truncate table game CASCADE;
-- alter sequence game_game_id_seq restart with 1;
insert into game (bgg_id, name)
select max(bgg_id), name2
from "import_bgg_ids_2022-10-23"
where category = 'boardgame' and name2 not in (select g.name from game g)
group by name2