home / pf

albums_artists

5 rows where artist_id = 711

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
737 737 703 703 711 711
739 739 704 704 711 711
5927 5927 5659 5659 711 711
7089 7089 6790 6790 711 711
27051 27051 26901 26901 711 711

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