albums_artists
5 rows where artist_id = 1256
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 1365 | 1365 | 1285 1285 | 1256 1256 |
| 3655 | 3655 | 3459 3459 | 1256 1256 |
| 6375 | 6375 | 6086 6086 | 1256 1256 |
| 9071 | 9071 | 8731 8731 | 1256 1256 |
| 11630 | 11630 | 11293 11293 | 1256 1256 |
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) );