query to select first 30 characters

KenshiroUK

Registered User.
Local time
Today, 17:50
Joined
Oct 15, 2012
Messages
160
Hi all,

Please can I have the command to select first 30 characters in a simple select query.
 
What about Left([theFieldName], 30) or Mid([fieldName], 1, 30)

But make sure that the Fields do not contain Null Values.. Else it will throw error..
 
What about Left([theFieldName], 30) or Mid([fieldName], 1, 30)

But make sure that the Fields do not contain Null Values.. Else it will throw error..

Does this also include spaces?
 

Users who are viewing this thread

Back
Top Bottom