albums_artists
3 rows where artist_id = 9815
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 20978 | 20978 | 20832 20832 | 9815 9815 |
| 23396 | 23396 | 23293 23293 | 9815 9815 |
| 25302 | 25302 | 25203 25203 | 9815 9815 |
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) );