albums_artists
4 rows where artist_id = 4082
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 6145 | 6145 | 5865 5865 | 4082 4082 |
| 8830 | 8830 | 8499 8499 | 4082 4082 |
| 15594 | 15594 | 15255 15255 | 4082 4082 |
| 16978 | 16978 | 16670 16670 | 4082 4082 |
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) );