I have a dataset with a column "person_code".
This column contains the following data:
- "Carra"
- "Carra " -> one trailing space
Now if i set the primary key of the dataset to the column "person_code" I'll get the following error:
"These columns don't currently have unique values."
Any way around this? The best I can think of is to add a new column "primary_key" and then replace the ending/starting spaces with another sign. This will cause some extra problems: if I replace them with _ and there's already a Carra_ in the database...
Is there a better way?