albums_artists
3 rows where artist_id = 1398
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 1534 | 1534 | 1448 1448 | 1398 1398 |
| 4053 | 4053 | 3853 3853 | 1398 1398 |
| 6153 | 6153 | 5874 5874 | 1398 1398 |
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) );