albums_artists
4 rows where artist_id = 755
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 785 | 785 | 745 745 | 755 755 |
| 8747 | 8747 | 8414 8414 | 755 755 |
| 11216 | 11216 | 10878 10878 | 755 755 |
| 20296 | 20296 | 20124 20124 | 755 755 |
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) );