albums_artists
3 rows where artist_id = 8116
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 16241 | 16241 | 15920 15920 | 8116 8116 |
| 17514 | 17514 | 17219 17219 | 8116 8116 |
| 22334 | 22334 | 22245 22245 | 8116 8116 |
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) );