Extraction of first 3 characters

goldmedallist

Registered User.
Local time
Today, 18:51
Joined
Jun 24, 2005
Messages
16
I am trying to write a query to extract the first 3 characters from a character string but have no idea where to start since we usually use Select "field" etc etc

Example, for a Code ACC01, the query result should give ACC

Would appeciated any guidance. Thank!

TK
 
Hello goldmedallist

Try
Select Left(YourFieldName,3) From YourTableName

Bryan
 
Hello MStef and Bryan,

Thank you very much for both your assistance It works perfectly!

Warm regards
 

Users who are viewing this thread

Back
Top Bottom