albums_artists
3 rows where artist_id = 9618
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 20413 | 20413 | 20247 20247 | 9618 9618 |
| 20677 | 20677 | 20515 20515 | 9618 9618 |
| 20678 | 20678 | 20516 20516 | 9618 9618 |
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) );