albums_artists
3 rows where artist_id = 3334
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 4572 | 4572 | 4356 4356 | 3334 3334 |
| 12495 | 12495 | 12156 12156 | 3334 3334 |
| 13542 | 13542 | 13191 13191 | 3334 3334 |
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) );