albums_artists
3 rows where artist_id = 8853
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 18179 | 18179 | 17897 17897 | 8853 8853 |
| 20871 | 20871 | 20717 20717 | 8853 8853 |
| 22770 | 22770 | 22680 22680 | 8853 8853 |
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) );