Trying to join two tables on a column referencing diagnoses. One table uses the actual diagnosis code (aka has decimal), but the other table uses the diagnosis code sans decimal/period. Ex: A43.21 v A4321 or 553.1 v 5531
LEFT JOIN DB_VIEW.Reference_Diagnosis_Table RDT
ON RDT.Diagnosis_Code = SANS.Diagnosis_Code
But obviously they aren't equal to eachother... is there a way to write this so it interprets the RDT.Diagnosis_Code without having it? (FYI I do not have the ability to alter the existing data stored within the warehouse)