albums_artists
3 rows where artist_id = 8158
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 16341 | 16341 | 16026 16026 | 8158 8158 |
| 18715 | 18715 | 18471 18471 | 8158 8158 |
| 21499 | 21499 | 21378 21378 | 8158 8158 |
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) );