home / pf

albums_artists

5 rows where artist_id = 3163

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
4282 4282 4078 4078 3163 3163
4968 4968 4733 4733 3163 3163
6067 6067 5792 5792 3163 3163
7985 7985 7671 7671 3163 3163
10014 10014 9669 9669 3163 3163

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.196ms