albums_artists
3 rows where artist_id = 3798
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 5561 | 5561 | 5302 5302 | 3798 3798 |
| 14202 | 14202 | 13842 13842 | 3798 3798 |
| 18315 | 18315 | 18039 18039 | 3798 3798 |
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) );