albums_artists
4 rows where artist_id = 5676
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 9853 | 9853 | 9505 9505 | 5676 5676 |
| 14488 | 14488 | 14132 14132 | 5676 5676 |
| 15699 | 15699 | 15362 15362 | 5676 5676 |
| 15700 | 15700 | 15363 15363 | 5676 5676 |
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) );