MySQL update text field with ‘

Apparently someplace in the wp_list_table, or maybe someplace else, the escape character \ was inserted before any ‘ . I was able to solve this by adding this line of code just before the $wpdb->update statement.

$item['RecordedSubdivision'] = str_replace("\'", "'",$item['RecordedSubdivision']);