albums_artists
3 rows where artist_id = 6819
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 12502 | 12502 | 12163 12163 | 6819 6819 |
| 14272 | 14272 | 13916 13916 | 6819 6819 |
| 16400 | 16400 | 16086 16086 | 6819 6819 |
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) );