home / pf

albums_artists

6 rows where artist_id = 492

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
504 504 482 482 492 492
5377 5377 5125 5125 492 492
10304 10304 9961 9961 492 492
11511 11511 11174 11174 492 492
15283 15283 14938 14938 492 492
18213 18213 17933 17933 492 492

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