albums_artists
3 rows where artist_id = 8156
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 16336 | 16336 | 16022 16022 | 8156 8156 |
| 18061 | 18061 | 17771 17771 | 8156 8156 |
| 21398 | 21398 | 21276 21276 | 8156 8156 |
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) );