albums_artists
3 rows where artist_id = 2594
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 3270 | 3270 | 3087 3087 | 2594 2594 |
| 10963 | 10963 | 10622 10622 | 2594 2594 |
| 13792 | 13792 | 13436 13436 | 2594 2594 |
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) );