albums_artists
4 rows where artist_id = 5117
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 8591 | 8591 | 8257 8257 | 5117 5117 |
| 21330 | 21330 | 21205 21205 | 5117 5117 |
| 24185 | 24185 | 24075 24075 | 5117 5117 |
| 25887 | 25887 | 25789 25789 | 5117 5117 |
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) );