albums_artists
4 rows where artist_id = 1117
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 1211 | 1211 | 1141 1141 | 1117 1117 |
| 9682 | 9682 | 9334 9334 | 1117 1117 |
| 17704 | 17704 | 17409 17409 | 1117 1117 |
| 22451 | 22451 | 22355 22355 | 1117 1117 |
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) );