albums_artists
4 rows where artist_id = 4789
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 7781 | 7781 | 7471 7471 | 4789 4789 |
| 8846 | 8846 | 8514 8514 | 4789 4789 |
| 10156 | 10156 | 9816 9816 | 4789 4789 |
| 11700 | 11700 | 11358 11358 | 4789 4789 |
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) );