albums_artists
4 rows where artist_id = 6781
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 12407 | 12407 | 12070 12070 | 6781 6781 |
| 17758 | 17758 | 17464 17464 | 6781 6781 |
| 22394 | 22394 | 22301 22301 | 6781 6781 |
| 25993 | 25993 | 25894 25894 | 6781 6781 |
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) );