albums_artists
4 rows where artist_id = 8358
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 16910 | 16910 | 16600 16600 | 8358 8358 |
| 17881 | 17881 | 17588 17588 | 8358 8358 |
| 20397 | 20397 | 20230 20230 | 8358 8358 |
| 21596 | 21596 | 21482 21482 | 8358 8358 |
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) );