Sql and asp (For Combine search) - TechRepublic
General discussion
July 19, 2002 at 09:25 PM
eb_alavi

Sql and asp (For Combine search)

by eb_alavi . Updated 23 years, 11 months ago

Hi,
I have one form in asp ,
User type some word in it .
I want search in database for them .
my database have one table and one field.
Table name : Catalog
Field name : Select

For example user type this :

“combine Search”+algorithm new
it means :
“Combine Search” AND “Algorithm” OR “new”
in sql means :
from [Catalog] where
[Catalog][Select] like “%Combine Search%” AND
[Catalog][Select] like “%Algorithm%” OR
[Catalog][Select] like “%new%”
I want create this sql .
How can I do?
Thanks ,

This discussion is locked

All Comments