View Full Version : searching specific characters in a text field


Eliza
03-27-2002, 09:49 AM
I am trying to write an SQL statement that will search for specific characters(that are entered by the user) in a text field

RV
03-27-2002, 11:43 AM
Eliza,

assuming you want to use a dialog screen in which the user can enter the characters:

SELECT *
FROM YourTable
WHERE YourTableField LIKE "*"&[Enter characters]&"*"

RV