albums_artists
3 rows where artist_id = 8136
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 16293 | 16293 | 15977 15977 | 8136 8136 |
| 18530 | 18530 | 18269 18269 | 8136 8136 |
| 24549 | 24549 | 24429 24429 | 8136 8136 |
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) );