albums_artists
3 rows where artist_id = 8420
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 17085 | 17085 | 16783 16783 | 8420 8420 |
| 18077 | 18077 | 17791 17791 | 8420 8420 |
| 18456 | 18456 | 18187 18187 | 8420 8420 |
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) );