albums_artists
3 rows where artist_id = 5936
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 10485 | 10485 | 10146 10146 | 5936 5936 |
| 22884 | 22884 | 22790 22790 | 5936 5936 |
| 23428 | 23428 | 23324 23324 | 5936 5936 |
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) );