Austin Animal Center Shelter Intakes And Outcomes
80,000 Shelter Animal Intakes and Resulting Outcomes
@kaggle.aaronschlegel_austin_animal_center_shelter_intakes_and_outcomes
80,000 Shelter Animal Intakes and Resulting Outcomes
@kaggle.aaronschlegel_austin_animal_center_shelter_intakes_and_outcomes
CREATE TABLE aac_intakes (
"age_upon_intake" VARCHAR,
"animal_id" VARCHAR,
"animal_type" VARCHAR,
"breed" VARCHAR,
"color" VARCHAR,
"datetime" TIMESTAMP,
"datetime2" TIMESTAMP,
"found_location" VARCHAR,
"intake_condition" VARCHAR,
"intake_type" VARCHAR,
"name" VARCHAR,
"sex_upon_intake" VARCHAR
);
CREATE TABLE aac_outcomes (
"age_upon_outcome" VARCHAR,
"animal_id" VARCHAR,
"animal_type" VARCHAR,
"breed" VARCHAR,
"color" VARCHAR,
"date_of_birth" TIMESTAMP,
"datetime" TIMESTAMP,
"monthyear" TIMESTAMP,
"name" VARCHAR,
"outcome_subtype" VARCHAR,
"outcome_type" VARCHAR,
"sex_upon_outcome" VARCHAR
);
CREATE TABLE aac_intakes_outcomes (
"age_upon_outcome" VARCHAR,
"animal_id_outcome" VARCHAR,
"date_of_birth" TIMESTAMP,
"outcome_subtype" VARCHAR,
"outcome_type" VARCHAR,
"sex_upon_outcome" VARCHAR,
"age_upon_outcome_days" BIGINT,
"age_upon_outcome_years" DOUBLE,
"age_upon_outcome_age_group" VARCHAR,
"outcome_datetime" TIMESTAMP,
"outcome_month" BIGINT,
"outcome_year" BIGINT,
"outcome_monthyear" TIMESTAMP,
"outcome_weekday" VARCHAR,
"outcome_hour" BIGINT,
"outcome_number" DOUBLE,
"dob_year" BIGINT,
"dob_month" BIGINT,
"dob_monthyear" TIMESTAMP,
"age_upon_intake" VARCHAR,
"animal_id_intake" VARCHAR,
"animal_type" VARCHAR,
"breed" VARCHAR,
"color" VARCHAR,
"found_location" VARCHAR,
"intake_condition" VARCHAR,
"intake_type" VARCHAR,
"sex_upon_intake" VARCHAR,
"count" BIGINT,
"age_upon_intake_days" BIGINT,
"age_upon_intake_years" DOUBLE,
"age_upon_intake_age_group" VARCHAR,
"intake_datetime" TIMESTAMP,
"intake_month" BIGINT,
"intake_year" BIGINT,
"intake_monthyear" TIMESTAMP,
"intake_weekday" VARCHAR,
"intake_hour" BIGINT,
"intake_number" DOUBLE,
"time_in_shelter" VARCHAR,
"time_in_shelter_days" DOUBLE
);
Anyone who has the link will be able to view this.