Queries with regular expressions

E

Emilian Szyburski

I want to do a query with a conditions of a type

WHERE <column> contains <string>

WHERE <column> starts with <string>

Of course <column> is of string type.

I wanted to do it using reqular expressions (like you can do it in MySQL)
but it doesn't workk.

So, how can it be done in MS Access ?

Emilian Szyburski
 
C

Chuck

WHERE said:
WHERE <column> starts with <string>

Of course <column> is of string type.


WHERE <column> LIKE "string*" will return all records that start with
"string"
WHERE <column> LIKE "*string*" will return all records that contain
"string"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top