albums_artists
3 rows where artist_id = 8347
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 16875 | 16875 | 16565 16565 | 8347 8347 |
| 19914 | 19914 | 19727 19727 | 8347 8347 |
| 21555 | 21555 | 21437 21437 | 8347 8347 |
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) );