albums_artists
4 rows where artist_id = 8163
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 16348 | 16348 | 16033 16033 | 8163 8163 |
| 16349 | 16349 | 16034 16034 | 8163 8163 |
| 18640 | 18640 | 18390 18390 | 8163 8163 |
| 23876 | 23876 | 23764 23764 | 8163 8163 |
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) );