albums_artists
3 rows where artist_id = 5273
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 8954 | 8954 | 8617 8617 | 5273 5273 |
| 18730 | 18730 | 18486 18486 | 5273 5273 |
| 23796 | 23796 | 23686 23686 | 5273 5273 |
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) );