albums_artists
4 rows where artist_id = 9256
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 19324 | 19324 | 19106 19106 | 9256 9256 |
| 22456 | 22456 | 22361 22361 | 9256 9256 |
| 24069 | 24069 | 23959 23959 | 9256 9256 |
| 24907 | 24907 | 24797 24797 | 9256 9256 |
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) );