albums_artists
4 rows where artist_id = 2706
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 3466 | 3466 | 3271 3271 | 2706 2706 |
| 7739 | 7739 | 7432 7432 | 2706 2706 |
| 8924 | 8924 | 8588 8588 | 2706 2706 |
| 10821 | 10821 | 10483 10483 | 2706 2706 |
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) );