Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Access/SQL function like Oracle's substr ?

Status
Not open for further replies.

jpercival

Programmer
Aug 20, 2001
5
US
Can anyone tell me if there is an Access SQL function similar to Oracle's substr?
If I wanted to pull the first three characters of a name field from an Oracle table I would code:

Select substr(name,1,3) from mytable;

What would the Access equivalent to this be?

Thanks in advance for any help!
 
Look at the Left, Right and Mid functions in help... Terry M. Hoey
 
Thanks so much...they are just what I've been looking for!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top