albums_artists
4 rows where artist_id = 1266
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 1376 | 1376 | 1295 1295 | 1266 1266 |
| 5427 | 5427 | 5173 5173 | 1266 1266 |
| 26852 | 26852 | 26713 26713 | 1266 1266 |
| 27298 | 27298 | 27131 27131 | 1266 1266 |
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) );