Uppercase to ProperCase Update Query needed

  • Thread starter Thread starter Bikini Browser
  • Start date Start date
B

Bikini Browser

I need a query written that will change everything in one Column in One
table to Propercase versus upper case.

How do you do that? (I am not a programmer but I know how to paste a query
to the right spot.)

Thanks


Dale
 
UPDATE [TableName]
SET [TableName].[FIELD_NAME] = StrConv([FIELD_NAME],3);
 
SELECT StrConv([field to make proper],3) AS Expr1
FROM [table to make proper];
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top