albums_artists
3 rows where artist_id = 2924
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 3857 | 3857 | 3653 3653 | 2924 2924 |
| 5092 | 5092 | 4849 4849 | 2924 2924 |
| 26530 | 26530 | 26419 26419 | 2924 2924 |
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) );