albums_artists
4 rows where artist_id = 3471
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 4838 | 4838 | 4618 4618 | 3471 3471 |
| 4839 | 4839 | 4619 4619 | 3471 3471 |
| 4840 | 4840 | 4620 4620 | 3471 3471 |
| 4841 | 4841 | 4621 4621 | 3471 3471 |
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) );