• I Import the data to a staging table that is an exact coipy of the original data (warts and all). It then goes through a transformation into output tables ready to go.

    I do limited cleaning of data but havebeen thinking a lot about these fields as I know they will be used a lot for comparisons for matching so the better they are the easier it should be.

    Is there a better way than just using a

    case when field ='' then NULL

    else field

    END as field

    ?

    Thanks

    M