albums_artists
3 rows where artist_id = 1902
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 2206 | 2206 | 2070 2070 | 1902 1902 |
| 15599 | 15599 | 15260 15260 | 1902 1902 |
| 19449 | 19449 | 19231 19231 | 1902 1902 |
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) );