albums_artists
3 rows where artist_id = 8862
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 18224 | 18224 | 17944 17944 | 8862 8862 |
| 20806 | 20806 | 20649 20649 | 8862 8862 |
| 22091 | 22091 | 21994 21994 | 8862 8862 |
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) );