albums_artists
3 rows where artist_id = 5742
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 9981 | 9981 | 9636 9636 | 5742 5742 |
| 11960 | 11960 | 11617 11617 | 5742 5742 |
| 12452 | 12452 | 12114 12114 | 5742 5742 |
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) );