BennyLinton
Registered User.
- Local time
- Today, 05:34
- Joined
- Feb 21, 2014
- Messages
- 263
I have a query (that I'm going to use as a base for an update query when I get it working) to convert certain Romanian characters to English alphabet. Below is what I have so far but my lower case letters are not working e.g. 'ș' is rendering as 'S':
SELECT ApplicantMaster.LastName, Replace(
Replace(
Replace(
Replace(
Replace(
Replace(
[LastName],
'Ş',UCase('S')),
'Ș',UCase('S')),
'ș',LCase('s')),
'Ț',UCase('T')),
'ț',LCase('t')),
'ţ',LCase('t')) AS Correctname,
ApplicantMaster.FirstName, ApplicantMaster.StateProvince, ApplicantMaster.City, ApplicantMaster.Country, ApplicantMaster.GCDFNo
FROM ApplicantMaster
WHERE (((ApplicantMaster.Country)="Romania")
SELECT ApplicantMaster.LastName, Replace(
Replace(
Replace(
Replace(
Replace(
Replace(
[LastName],
'Ş',UCase('S')),
'Ș',UCase('S')),
'ș',LCase('s')),
'Ț',UCase('T')),
'ț',LCase('t')),
'ţ',LCase('t')) AS Correctname,
ApplicantMaster.FirstName, ApplicantMaster.StateProvince, ApplicantMaster.City, ApplicantMaster.Country, ApplicantMaster.GCDFNo
FROM ApplicantMaster
WHERE (((ApplicantMaster.Country)="Romania")