albums_artists
4 rows where artist_id = 892
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 932 | 932 | 881 881 | 892 892 |
| 3793 | 3793 | 3591 3591 | 892 892 |
| 6464 | 6464 | 6172 6172 | 892 892 |
| 7893 | 7893 | 7576 7576 | 892 892 |
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) );