How can I get rid of comma's if not part of a "valid" value?For instance, I have a 'Sample' table that contains a 'State' columnThe values in the column could be empty, contain states separated by a comma, or contain one or more single commas. I want to remove those, while keeping states with a comma separating them.Thoughts...?CURRENTTABLE = 'Sample'COLUMN = 'State'StateAlabama, Alaska, ArizonaCalifornia, Coloradoempty string, empty string, , Deleware, Georgia, Utah
DESIRED RESULTSStateAlabamaempty string Alaska, ArizonaCalifornia, Coloradoempty string empty string Deleware, Georgia, Utah