albums_artists
4 rows where artist_id = 5915
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 10453 | 10453 | 10111 10111 | 5915 5915 |
| 12956 | 12956 | 12613 12613 | 5915 5915 |
| 15496 | 15496 | 15153 15153 | 5915 5915 |
| 17901 | 17901 | 17606 17606 | 5915 5915 |
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) );