albums_artists
3 rows where artist_id = 8024
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 16015 | 16015 | 15681 15681 | 8024 8024 |
| 20175 | 20175 | 19998 19998 | 8024 8024 |
| 26626 | 26626 | 26509 26509 | 8024 8024 |
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) );