albums_artists
4 rows where artist_id = 3702
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 5350 | 5350 | 5100 5100 | 3702 3702 |
| 16441 | 16441 | 16127 16127 | 3702 3702 |
| 17157 | 17157 | 16855 16855 | 3702 3702 |
| 24113 | 24113 | 24003 24003 | 3702 3702 |
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) );