home / pf

albums_artists

5 rows where artist_id = 1372

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1502 1502 1418 1418 1372 1372
18000 18000 17710 17710 1372 1372
21332 21332 21207 21207 1372 1372
22530 22530 22436 22436 1372 1372
24280 24280 24172 24172 1372 1372

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