albums_artists
4 rows where artist_id = 5096
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 8548 | 8548 | 8215 8215 | 5096 5096 |
| 13717 | 13717 | 13364 13364 | 5096 5096 |
| 17642 | 17642 | 17347 17347 | 5096 5096 |
| 20117 | 20117 | 19940 19940 | 5096 5096 |
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) );