albums_artists
3 rows where artist_id = 4964
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 8222 | 8222 | 7900 7900 | 4964 4964 |
| 9075 | 9075 | 8735 8735 | 4964 4964 |
| 12316 | 12316 | 11979 11979 | 4964 4964 |
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) );