guineamation
Programmer
I would like to create a full text search on a DB column using the SELECT...LIKE type statement. How do I call the variable "form" for ex. into this statement.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT * FROM MyTable WHERE LastName LIKE '%evans%'
strSQL = "SELECT * FROM MyTable WHERE LastName LIKE '%" & last & "'%"