albums_artists
4 rows where artist_id = 2122
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 2526 | 2526 | 2374 2374 | 2122 2122 |
| 6434 | 6434 | 6142 6142 | 2122 2122 |
| 8404 | 8404 | 8078 8078 | 2122 2122 |
| 23892 | 23892 | 23779 23779 | 2122 2122 |
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) );