home / pf

albums_artists

5 rows where artist_id = 1898

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
2201 2201 2065 2065 1898 1898
3475 3475 3279 3279 1898 1898
7356 7356 7057 7057 1898 1898
10209 10209 9870 9870 1898 1898
14057 14057 13703 13703 1898 1898

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