albums_artists
3 rows where artist_id = 2639
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 3349 | 3349 | 3163 3163 | 2639 2639 |
| 9619 | 9619 | 9273 9273 | 2639 2639 |
| 12874 | 12874 | 12531 12531 | 2639 2639 |
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) );