albums_artists
3 rows where artist_id = 2736
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 3510 | 3510 | 3313 3313 | 2736 2736 |
| 9246 | 9246 | 8901 8901 | 2736 2736 |
| 20295 | 20295 | 20123 20123 | 2736 2736 |
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) );