albums_artists
3 rows where artist_id = 56
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 61 | 61 | 59 59 | 56 56 |
| 1138 | 1138 | 1073 1073 | 56 56 |
| 3520 | 3520 | 3323 3323 | 56 56 |
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) );