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!
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!