home / pf

albums_artists

4 rows where artist_id = 2448

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
3052 3052 2877 2877 2448 2448
3053 3053 2878 2878 2448 2448
4560 4560 4344 4344 2448 2448
27388 27388 27215 27215 2448 2448

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