albums_artists
4 rows where artist_id = 2557
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 3203 | 3203 | 3022 3022 | 2557 2557 |
| 4061 | 4061 | 3862 3862 | 2557 2557 |
| 10973 | 10973 | 10632 10632 | 2557 2557 |
| 17320 | 17320 | 17018 17018 | 2557 2557 |
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) );