albums_artists
3 rows where artist_id = 3456
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 4799 | 4799 | 4581 4581 | 3456 3456 |
| 7057 | 7057 | 6760 6760 | 3456 3456 |
| 9982 | 9982 | 9637 9637 | 3456 3456 |
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) );