albums_artists
3 rows where artist_id = 9479
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 19974 | 19974 | 19786 19786 | 9479 9479 |
| 21434 | 21434 | 21315 21315 | 9479 9479 |
| 22082 | 22082 | 21986 21986 | 9479 9479 |
Advanced export
JSON shape: default, array, newline-delimited
CREATE TABLE albums_artists ( album_id integer NOT NULL, artist_id integer NOT NULL, FOREIGN KEY(artist_id) REFERENCES artists(id), FOREIGN KEY(album_id) REFERENCES albums(id), UNIQUE(album_id, artist_id) );