home / pf

albums_artists

5 rows where artist_id = 67

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
72 72 70 70 67 67
3271 3271 3088 3088 67 67
5073 5073 4832 4832 67 67
8956 8956 8618 8618 67 67
26889 26889 26747 26747 67 67

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