home / pf

albums_artists

4 rows where artist_id = 3398

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
4686 4686 4470 4470 3398 3398
12112 12112 11773 11773 3398 3398
14155 14155 13799 13799 3398 3398
15676 15676 15338 15338 3398 3398

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

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)
);
Powered by Datasette · Queries took 64.894ms