albums_artists
3 rows where artist_id = 7097
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 13333 | 13333 | 12985 12985 | 7097 7097 |
| 15262 | 15262 | 14917 14917 | 7097 7097 |
| 19418 | 19418 | 19202 19202 | 7097 7097 |
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) );