home / pf

albums_artists

5 rows where artist_id = 10069

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
21838 21838 21734 21734 10069 10069
21839 21839 21735 21735 10069 10069
21840 21840 21736 21736 10069 10069
21841 21841 21737 21737 10069 10069
22769 22769 22679 22679 10069 10069

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