lyancsie
lyancsie

Reputation: 678

How to get a specified character of a string

I would like to know, how to get a specified character of a string in MS-Access 2010. The exact thing I would like to do is to get the 2nd character of a string.

Upvotes: 0

Views: 60

Answers (1)

dnoeth
dnoeth

Reputation: 60462

Access doesn't support Standard SQL's SUBSTRING, but there's a similar function, MID:

MID(col, 2,1)

Upvotes: 3

Related Questions