home / pf

albums_artists

4 rows where artist_id = 1948

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
2262 2262 2122 2122 1948 1948
5042 5042 4803 4803 1948 1948
8481 8481 8152 8152 1948 1948
9735 9735 9389 9389 1948 1948

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