albums_artists
3 rows where artist_id = 8398
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 17026 | 17026 | 16723 16723 | 8398 8398 |
| 17027 | 17027 | 16724 16724 | 8398 8398 |
| 25329 | 25329 | 25228 25228 | 8398 8398 |
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) );