home / pf

albums_artists

4 rows where artist_id = 1011

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1069 1069 1013 1013 1011 1011
2898 2898 2729 2729 1011 1011
3900 3900 3695 3695 1011 1011
27193 27193 27031 27031 1011 1011

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