albums_artists
4 rows where artist_id = 8535
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 17350 | 17350 | 17050 17050 | 8535 8535 |
| 20053 | 20053 | 19870 19870 | 8535 8535 |
| 20800 | 20800 | 20643 20643 | 8535 8535 |
| 21904 | 21904 | 21800 21800 | 8535 8535 |
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) );