albums_artists
4 rows where artist_id = 286
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 293 | 293 | 280 280 | 286 286 |
| 2685 | 2685 | 2524 2524 | 286 286 |
| 3872 | 3872 | 3667 3667 | 286 286 |
| 8184 | 8184 | 7864 7864 | 286 286 |
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) );