albums_artists
4 rows where artist_id = 2289
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 2783 | 2783 | 2618 2618 | 2289 2289 |
| 7203 | 7203 | 6905 6905 | 2289 2289 |
| 8807 | 8807 | 8474 8474 | 2289 2289 |
| 10186 | 10186 | 9846 9846 | 2289 2289 |
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) );