albums_artists
3 rows where artist_id = 7890
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 15670 | 15670 | 15332 15332 | 7890 7890 |
| 18045 | 18045 | 17755 17755 | 7890 7890 |
| 19785 | 19785 | 19590 19590 | 7890 7890 |
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) );