home / pf

albums_artists

3 rows where album_id = 1901

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
2021 2021 1901 1901 1765 1765
2022 2022 1901 1901 1766 1766
2023 2023 1901 1901 1767 1767

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