albums_artists
3 rows where artist_id = 1203
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 1309 | 1309 | 1230 1230 | 1203 1203 |
| 7077 | 7077 | 6779 6779 | 1203 1203 |
| 10538 | 10538 | 10199 10199 | 1203 1203 |
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) );