albums_artists
3 rows where artist_id = 6162
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 10960 | 10960 | 10619 10619 | 6162 6162 |
| 18875 | 18875 | 18631 18631 | 6162 6162 |
| 27316 | 27316 | 27148 27148 | 6162 6162 |
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) );