albums_artists
3 rows where artist_id = 7606
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 14763 | 14763 | 14409 14409 | 7606 7606 |
| 16498 | 16498 | 16184 16184 | 7606 7606 |
| 18836 | 18836 | 18592 18592 | 7606 7606 |
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) );