NY Philharmonic Performance History
All Performances, 1842-Present
@kaggle.nyphil_perf_history
All Performances, 1842-Present
@kaggle.nyphil_perf_history
CREATE TABLE concerts (
"date" VARCHAR,
"location" VARCHAR,
"time" VARCHAR,
"venue" VARCHAR,
"eventtype" VARCHAR,
"season" VARCHAR,
"programid" BIGINT,
"orchestra" VARCHAR,
"id" VARCHAR
);
CREATE TABLE ny_phil (
"date" VARCHAR,
"location" VARCHAR,
"time" VARCHAR,
"venue" VARCHAR,
"eventtype" VARCHAR,
"id" VARCHAR,
"composername" VARCHAR,
"conductorname" VARCHAR,
"interval" VARCHAR,
"movement" VARCHAR,
"worktitle" VARCHAR,
"soloistinstrument" VARCHAR,
"soloistname" VARCHAR,
"soloistroles" VARCHAR,
"season" VARCHAR,
"programid" DOUBLE,
"orchestra" VARCHAR
);
CREATE TABLE soloists (
"soloistinstrument" VARCHAR,
"soloistname" VARCHAR,
"soloistroles" VARCHAR,
"season" VARCHAR,
"programid" BIGINT,
"orchestra" VARCHAR,
"id" VARCHAR
);
CREATE TABLE works (
"id" VARCHAR,
"composername" VARCHAR,
"conductorname" VARCHAR,
"interval" VARCHAR,
"movement" VARCHAR,
"soloists" VARCHAR,
"worktitle" VARCHAR,
"season" VARCHAR,
"programid" BIGINT,
"orchestra" VARCHAR,
"id_3a3c28" VARCHAR
);
Anyone who has the link will be able to view this.