albums_artists
4 rows where artist_id = 8713
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 17804 | 17804 | 17512 17512 | 8713 8713 |
| 21738 | 21738 | 21630 21630 | 8713 8713 |
| 21739 | 21739 | 21631 21631 | 8713 8713 |
| 23065 | 23065 | 22966 22966 | 8713 8713 |
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) );