home / pf

albums_artists

5 rows where artist_id = 7952

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
15840 15840 15497 15497 7952 7952
15841 15841 15498 15498 7952 7952
15842 15842 15499 15499 7952 7952
21062 21062 20923 20923 7952 7952
22644 22644 22552 22552 7952 7952

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