albums_artists
3 rows where artist_id = 927
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 970 | 970 | 915 915 | 927 927 |
| 2226 | 2226 | 2086 2086 | 927 927 |
| 12202 | 12202 | 11866 11866 | 927 927 |
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) );