home / pf

albums_artists

5 rows where artist_id = 4392

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
6857 6857 6557 6557 4392 4392
7144 7144 6844 6844 4392 4392
7145 7145 6845 6845 4392 4392
7147 7147 6847 6847 4392 4392
20945 20945 20799 20799 4392 4392

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