Using a parameter in query:partial march

  • Thread starter Thread starter Veli Izzet
  • Start date Start date
V

Veli Izzet

Hi all,

I want to input a parameter in a query for a partial match; i.e

I want the query to choose all the records that even partially matches
the data in the field. (like using the Like statement).

Thanks for any help.
 
You need to use the Like with *

Select * From TableName Where fieldName Like "*" & [Please enter value:] & "*"
 
Thanks..
You need to use the Like with *

Select * From TableName Where fieldName Like "*" & [Please enter value:] & "*"



:

Hi all,

I want to input a parameter in a query for a partial match; i.e

I want the query to choose all the records that even partially matches
the data in the field. (like using the Like statement).

Thanks for any help.
 

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

Back
Top