home / pf

albums_artists

5 rows where artist_id = 1078

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1151 1151 1083 1083 1078 1078
8318 8318 7997 7997 1078 1078
11097 11097 10758 10758 1078 1078
12473 12473 12136 12136 1078 1078
14635 14635 14280 14280 1078 1078

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