Emmy Awards
Television Academy - Emmy Awards, 1949 - 2019
@kaggle.unanimad_emmy_awards
Television Academy - Emmy Awards, 1949 - 2019
@kaggle.unanimad_emmy_awards
An Emmy Award, or simply Emmy, is an American award that recognizes excellence in the television industry. It is presented at numerous annual events held throughout the calendar year, each honoring one of the various sectors of the television industry. The two ceremonies that receive the most media coverage are the Primetime Emmy Awards and the Daytime Emmy Awards, which recognize outstanding work in American primetime and daytime entertainment programming, respectively. Other notable Emmy events include those honoring national sports programming, national news and documentary shows, and technological and engineering achievements in television, including the Primetime Engineering Emmy Awards. Regional Emmy Awards are also presented throughout the country at various times through the year, recognizing excellence in local and statewide television. In addition, the International Emmy Awards honor excellence in TV programming produced and initially aired outside the United States.
The data were extracted from Awards' list page.
CREATE TABLE emmy_awards_categories (
"name" VARCHAR,
"category" VARCHAR,
"role" VARCHAR
);
CREATE TABLE the_emmy_awards (
"id" BIGINT,
"year" BIGINT,
"category" VARCHAR,
"nominee" VARCHAR,
"staff" VARCHAR,
"company" VARCHAR,
"producer" VARCHAR,
"win" BOOLEAN
);
Anyone who has the link will be able to view this.