albums_artists
3 rows where artist_id = 4721
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 7628 | 7628 | 7321 7321 | 4721 4721 |
| 14110 | 14110 | 13755 13755 | 4721 4721 |
| 15668 | 15668 | 15330 15330 | 4721 4721 |
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) );