publishers
Data license: CC0 · Data source: github.com/rikker/video8
- id
- ID
- name
- Publisher Name
- country
- Country
- parent_id
- Parent Entity
- notes
- Notes
0 rows where parent_id = 101
This data as json
country 0
0 records
CREATE TABLE publishers (
id INTEGER PRIMARY KEY,
name TEXT NOT NULL,
country TEXT,
parent_id INTEGER REFERENCES publishers(id),
notes TEXT
);