home / pf

albums_artists

5 rows where artist_id = 3290

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
4499 4499 4282 4282 3290 3290
11803 11803 11462 11462 3290 3290
11804 11804 11463 11463 3290 3290
11805 11805 11464 11464 3290 3290
24348 24348 24234 24234 3290 3290

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 45.546ms