albums_artists
3 rows where artist_id = 10411
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 22893 | 22893 | 22799 22799 | 10411 10411 |
| 24997 | 24997 | 24889 24889 | 10411 10411 |
| 25821 | 25821 | 25722 25722 | 10411 10411 |
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) );