Shrunken Dimension
CREATE TABLE dim_patient (
PatientID INT PRIMARY KEY,
Name String,
Age INT,
Gender String,
Race String,
Height DECIMAL,
Weight DECIMAL
EyeColor String,
...
...
);
In this shrunken dimension, you're reducing the attribute
set to only those necessary for BMI analysis,
simplifying the data model for this specific use case.
CREATE TABLE dim_patient_bmi(
PatientID INT Primary KEY,
Name String,
Height DECIMAL,
Weight DECIMAL,
BMI DECIMAL
)Last updated