Let's use a City field as an example. Suppose you want to display the cities as:
London
New York
Singapore
use this:
SELECT StrConv(City,3) as ProperCity
FROM yourTable;
If you want to capitalise only the first letter, use either this:
SELECT UCase(Left(City,1)) & LCase(Right(City,Len(City)-1)) as FirstLetterOnly
FROM yourTable;
or this:
SELECT UCase(Left(City,1)) & LCase(Mid(City,2)) as FirstLetterOnly
FROM yourTable;
They change the cities to
London
New york
Singapore