Are the measurements in your table really strings?
If they are numeric values, you might want to look at doing it by finding rows with the minimum difference between the database values and your inputs.
SELECT *
FROM sizing
ORDER BY (ABS(bust_cm - $bust) + ABS(waist_cm - $waist) + ABS(hips_cm - $hips)) ASC
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…