home / pf

albums_artists

5 rows where artist_id = 718

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
747 747 710 710 718 718
3028 3028 2853 2853 718 718
4546 4546 4330 4330 718 718
7283 7283 6987 6987 718 718
9580 9580 9234 9234 718 718

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