albums_artists
5 rows where artist_id = 3266
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 4451 | 4451 | 4237 4237 | 3266 3266 |
| 10188 | 10188 | 9848 9848 | 3266 3266 |
| 11873 | 11873 | 11531 11531 | 3266 3266 |
| 15971 | 15971 | 15632 15632 | 3266 3266 |
| 18296 | 18296 | 18019 18019 | 3266 3266 |
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) );