albums_artists
3 rows where artist_id = 7397
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 14206 | 14206 | 13846 13846 | 7397 7397 |
| 16741 | 16741 | 16432 16432 | 7397 7397 |
| 22079 | 22079 | 21983 21983 | 7397 7397 |
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) );