albums_artists
5 rows where artist_id = 502
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 515 | 515 | 494 494 | 502 502 |
| 2678 | 2678 | 2518 2518 | 502 502 |
| 3983 | 3983 | 3779 3779 | 502 502 |
| 5949 | 5949 | 5681 5681 | 502 502 |
| 27095 | 27095 | 26938 26938 | 502 502 |
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) );