albums_artists
4 rows where artist_id = 1672
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 1893 | 1893 | 1786 1786 | 1672 1672 |
| 4621 | 4621 | 4404 4404 | 1672 1672 |
| 5412 | 5412 | 5160 5160 | 1672 1672 |
| 8441 | 8441 | 8114 8114 | 1672 1672 |
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) );