albums_artists
3 rows where artist_id = 6089
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 10812 | 10812 | 10474 10474 | 6089 6089 |
| 11177 | 11177 | 10838 10838 | 6089 6089 |
| 15990 | 15990 | 15651 15651 | 6089 6089 |
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) );