albums_artists
3 rows where artist_id = 503
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 516 | 516 | 495 495 | 503 503 |
| 1555 | 1555 | 1466 1466 | 503 503 |
| 27239 | 27239 | 27078 27078 | 503 503 |
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) );