albums_artists
4 rows where artist_id = 7263
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 13816 | 13816 | 13458 13458 | 7263 7263 |
| 17431 | 17431 | 17137 17137 | 7263 7263 |
| 19486 | 19486 | 19271 19271 | 7263 7263 |
| 22449 | 22449 | 22353 22353 | 7263 7263 |
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) );