albums_artists
4 rows where artist_id = 5256
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 8903 | 8903 | 8568 8568 | 5256 5256 |
| 10407 | 10407 | 10066 10066 | 5256 5256 |
| 13335 | 13335 | 12987 12987 | 5256 5256 |
| 13939 | 13939 | 13582 13582 | 5256 5256 |
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) );