Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
if(patient_age >= 0 AND patient_age <= 18, '0-18',if(patient_age >= 19 AND patient_age <= 65, '19-65',if(patient_age >= 66, '66 above','unknown')))
missing paranthesis error
if(patient_age >= 0 AND patient_age <= 18, '0-18', if(patient_age >= 19 AND patient_age <= 65, '19-65', if(patient_age >= 66, '66 above','unknown') ) )