albums_artists
3 rows where artist_id = 7755
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 15230 | 15230 | 14885 14885 | 7755 7755 |
| 16423 | 16423 | 16109 16109 | 7755 7755 |
| 17277 | 17277 | 16973 16973 | 7755 7755 |
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) );