albums_artists
4 rows where artist_id = 7145
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 13451 | 13451 | 13099 13099 | 7145 7145 |
| 14679 | 14679 | 14323 14323 | 7145 7145 |
| 15765 | 15765 | 15428 15428 | 7145 7145 |
| 17011 | 17011 | 16705 16705 | 7145 7145 |
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) );