albums_artists
3 rows where artist_id = 7721
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 15130 | 15130 | 14785 14785 | 7721 7721 |
| 19615 | 19615 | 19409 19409 | 7721 7721 |
| 23564 | 23564 | 23460 23460 | 7721 7721 |
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) );