albums_artists
3 rows where artist_id = 4823
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 7868 | 7868 | 7553 7553 | 4823 4823 |
| 9761 | 9761 | 9415 9415 | 4823 4823 |
| 11957 | 11957 | 11614 11614 | 4823 4823 |
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) );