albums_artists
3 rows where artist_id = 1777
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 2035 | 2035 | 1913 1913 | 1777 1777 |
| 3327 | 3327 | 3142 3142 | 1777 1777 |
| 8883 | 8883 | 8548 8548 | 1777 1777 |
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) );