Patient Demographics
State of California
@usgov.ca_gov_patient_demographics
State of California
@usgov.ca_gov_patient_demographics
CREATE TABLE age_data_dictionary (
"field_title" VARCHAR,
"field_name" VARCHAR,
"data_type" VARCHAR,
"description" VARCHAR
);
CREATE TABLE citizenship_status (
"fiscal_year" BIGINT,
"citizenship_status" VARCHAR,
"patient_counts" BIGINT
);
CREATE TABLE citizenship_status_data_dictionary (
"field_title" VARCHAR,
"field_name" VARCHAR,
"data_type" VARCHAR,
"description" VARCHAR
);
CREATE TABLE education (
"fiscal_year" BIGINT,
"education" VARCHAR,
"patient_counts" BIGINT
);
CREATE TABLE education_data_dictionary (
"field_title" VARCHAR,
"field_name" VARCHAR,
"data_type" VARCHAR,
"description" VARCHAR
);
CREATE TABLE ethnicity (
"fiscal_year" BIGINT,
"ethnicity" VARCHAR,
"patient_counts" BIGINT
);
CREATE TABLE ethnicity_data_dictionary (
"field_title" VARCHAR,
"field_name" VARCHAR,
"data_type" VARCHAR,
"description" VARCHAR
);
CREATE TABLE language_spoken_at_home (
"fiscal_year" BIGINT,
"language_spoken_at_home" VARCHAR,
"patient_counts" VARCHAR
);
CREATE TABLE language_spoken_at_home_data_dictionary (
"field_title" VARCHAR,
"field_name" VARCHAR,
"data_type" VARCHAR,
"description" VARCHAR
);
CREATE TABLE level_of_care (
"fiscal_year" BIGINT,
"level_of_care" VARCHAR,
"count_of_caseid" VARCHAR
);
CREATE TABLE level_of_care_data_dictionary (
"field_title" VARCHAR,
"field_name" VARCHAR,
"data_type" VARCHAR,
"description" VARCHAR
);
CREATE TABLE marital_status (
"fiscal_year" BIGINT,
"marital_status" VARCHAR,
"patient_counts" BIGINT
);
CREATE TABLE marital_status_data_dictionary (
"field_title" VARCHAR,
"field_name" VARCHAR,
"data_type" VARCHAR,
"description" VARCHAR
);
CREATE TABLE patient_counts_by_hospital (
"fiscal_year" BIGINT,
"hospital" VARCHAR,
"patient_counts" BIGINT
);
CREATE TABLE patient_counts_by_hospital_data_dictionary (
"field_title" VARCHAR,
"field_name" VARCHAR,
"data_type" VARCHAR,
"description" VARCHAR
);
CREATE TABLE region (
"years" BIGINT,
"region" VARCHAR,
"patient_counts" DOUBLE
);
CREATE TABLE region_data_dictionary (
"field_title" VARCHAR,
"field_name" VARCHAR,
"data_type" VARCHAR,
"description" VARCHAR
);
CREATE TABLE sex_data_dictionary (
"field_title" VARCHAR,
"field_name" VARCHAR,
"data_type" VARCHAR,
"description" VARCHAR
);
CREATE TABLE table_19 (
"fiscal_year" BIGINT,
"sex" VARCHAR,
"patient_counts" BIGINT
);
Anyone who has the link will be able to view this.