albums_artists
3 rows where artist_id = 995
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 1050 | 1050 | 993 993 | 995 995 |
| 5687 | 5687 | 5424 5424 | 995 995 |
| 7426 | 7426 | 7127 7127 | 995 995 |
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) );