albums_artists
3 rows where artist_id = 4210
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 6485 | 6485 | 6194 6194 | 4210 4210 |
| 17721 | 17721 | 17425 17425 | 4210 4210 |
| 22253 | 22253 | 22162 22162 | 4210 4210 |
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) );