albums_artists
3 rows where artist_id = 2497
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 3118 | 3118 | 2940 2940 | 2497 2497 |
| 6700 | 6700 | 6409 6409 | 2497 2497 |
| 27395 | 27395 | 27221 27221 | 2497 2497 |
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) );