albums_artists
3 rows where artist_id = 348
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 355 | 355 | 338 338 | 348 348 |
| 356 | 356 | 339 339 | 348 348 |
| 11301 | 11301 | 10963 10963 | 348 348 |
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) );