Is there any way to get the initial letter of a string value in a field using SQL?
For instance, I can say:
SELECT Master.Name, Asc([Master].[Name]) AS AscCode
FROM Master;
- which returns the Ascii code of the first letter of Name
Now all I need to do is return the Character corresponding to that AscCode value.
For instance, I can say:
SELECT Master.Name, Asc([Master].[Name]) AS AscCode
FROM Master;
- which returns the Ascii code of the first letter of Name
Now all I need to do is return the Character corresponding to that AscCode value.