albums_artists
3 rows where artist_id = 8098
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 16192 | 16192 | 15870 15870 | 8098 8098 |
| 19225 | 19225 | 19005 19005 | 8098 8098 |
| 21795 | 21795 | 21689 21689 | 8098 8098 |
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) );