albums_artists
3 rows where artist_id = 7550
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 14638 | 14638 | 14283 14283 | 7550 7550 |
| 18177 | 18177 | 17895 17895 | 7550 7550 |
| 20992 | 20992 | 20847 20847 | 7550 7550 |
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) );