albums_artists
3 rows where artist_id = 9096
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 18895 | 18895 | 18652 18652 | 9096 9096 |
| 22436 | 22436 | 22341 22341 | 9096 9096 |
| 25067 | 25067 | 24962 24962 | 9096 9096 |
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) );