albums_artists
3 rows where artist_id = 7963
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 15865 | 15865 | 15520 15520 | 7963 7963 |
| 18054 | 18054 | 17764 17764 | 7963 7963 |
| 22061 | 22061 | 21963 21963 | 7963 7963 |
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) );