albums_artists
4 rows where artist_id = 8133
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 16283 | 16283 | 15967 15967 | 8133 8133 |
| 20447 | 20447 | 20281 20281 | 8133 8133 |
| 20940 | 20940 | 20794 20794 | 8133 8133 |
| 23200 | 23200 | 23096 23096 | 8133 8133 |
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) );