I'm trying to join two tables in Snowflake on a column called 'Name'. However, one table has names all in lowercase and the other tables has names with first character as uppercase followed by lowercase so the tables can't find a match.
Usually, you'd use an UPPER or LOWER function to find an exact match but in one table, the column has been collated and this function cannot be used here.
Does anyone have any ideas on how I can successfully join these two tables together?
Thanks