home / pf

albums_artists

5 rows where artist_id = 264

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
271 271 259 259 264 264
1505 1505 1421 1421 264 264
3002 3002 2829 2829 264 264
5418 5418 5165 5165 264 264
8046 8046 7734 7734 264 264

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