albums_artists
3 rows where artist_id = 7562
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 14665 | 14665 | 14310 14310 | 7562 7562 |
| 18378 | 18378 | 18105 18105 | 7562 7562 |
| 20810 | 20810 | 20653 20653 | 7562 7562 |
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) );