region_country_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
1 row where country_id = 24
Download this data as a CSV Spreadsheet (All Rows)
CREATE TABLE [region_country_index] (
[country_id] integer,
[region_id] integer,
FOREIGN KEY (country_id) REFERENCES countries(country_id),
FOREIGN KEY (region_id) REFERENCES global_regions(region_id)
);