albums_artists
3 rows where artist_id = 4049
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 6053 | 6053 | 5780 5780 | 4049 4049 |
| 17271 | 17271 | 16968 16968 | 4049 4049 |
| 22364 | 22364 | 22272 22272 | 4049 4049 |
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) );