albums_artists
3 rows where artist_id = 2328
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 2840 | 2840 | 2674 2674 | 2328 2328 |
| 5072 | 5072 | 4831 4831 | 2328 2328 |
| 26650 | 26650 | 26530 26530 | 2328 2328 |
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) );