albums_artists
4 rows where artist_id = 653
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 675 | 675 | 647 647 | 653 653 |
| 7407 | 7407 | 7107 7107 | 653 653 |
| 9833 | 9833 | 9486 9486 | 653 653 |
| 13492 | 13492 | 13140 13140 | 653 653 |
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) );