albums_artists
3 rows where artist_id = 315
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 322 | 322 | 308 308 | 315 315 |
| 2356 | 2356 | 2210 2210 | 315 315 |
| 3460 | 3460 | 3265 3265 | 315 315 |
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) );