home / pf

albums_artists

5 rows where artist_id = 6356

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
11397 11397 11058 11058 6356 6356
15793 15793 15454 15454 6356 6356
17941 17941 17649 17649 6356 6356
19935 19935 19747 19747 6356 6356
23674 23674 23568 23568 6356 6356

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