albums_artists
3 rows where artist_id = 2355
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 2886 | 2886 | 2717 2717 | 2355 2355 |
| 5254 | 5254 | 5010 5010 | 2355 2355 |
| 6234 | 6234 | 5953 5953 | 2355 2355 |
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) );