Sorry for the confusion.
But what I now need to do is, currently in my table I have some names that are all Upper Case.
I just need to keep the first letter as upper case.
I’ve created an update query,
UPDATE table1 SET [column] = lcase([column])
I am not sure what to do.
If I get the...