albums_artists
3 rows where artist_id = 5182
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 8737 | 8737 | 8404 8404 | 5182 5182 |
| 10084 | 10084 | 9740 9740 | 5182 5182 |
| 12018 | 12018 | 11677 11677 | 5182 5182 |
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) );