albums_artists
3 rows where artist_id = 8446
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 17143 | 17143 | 16846 16846 | 8446 8446 |
| 21748 | 21748 | 21640 21640 | 8446 8446 |
| 23483 | 23483 | 23377 23377 | 8446 8446 |
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) );