albums_artists
3 rows where artist_id = 8844
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 18144 | 18144 | 17860 17860 | 8844 8844 |
| 21177 | 21177 | 21050 21050 | 8844 8844 |
| 25558 | 25558 | 25459 25459 | 8844 8844 |
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) );