albums_artists
4 rows where artist_id = 8584
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 17507 | 17507 | 17212 17212 | 8584 8584 |
| 17508 | 17508 | 17213 17213 | 8584 8584 |
| 20502 | 20502 | 20338 20338 | 8584 8584 |
| 22005 | 22005 | 21905 21905 | 8584 8584 |
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) );