albums_artists
3 rows where artist_id = 8945
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 18452 | 18452 | 18184 18184 | 8945 8945 |
| 20849 | 20849 | 20696 20696 | 8945 8945 |
| 20850 | 20850 | 20697 20697 | 8945 8945 |
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) );