albums_artists
3 rows where artist_id = 8297
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 16735 | 16735 | 16426 16426 | 8297 8297 |
| 20366 | 20366 | 20198 20198 | 8297 8297 |
| 22184 | 22184 | 22090 22090 | 8297 8297 |
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) );