albums_artists
3 rows where artist_id = 8902
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 18329 | 18329 | 18054 18054 | 8902 8902 |
| 22677 | 22677 | 22584 22584 | 8902 8902 |
| 25761 | 25761 | 25662 25662 | 8902 8902 |
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) );