PDA

Click to See Complete Forum and Search --> : Keyword Search


gilly
Jun 13th, 2000, 09:07 PM
If you have information stored in a database for example Titles, descriptions, How would you go about linking a keyword search to the database?

Negative0
Jun 13th, 2000, 09:47 PM
If you want to do this using a select statment you could try:

"SELECT * FROM tbl WHERE fld like %Criteria%"

Depending on the database you are using, you may need to change the % signs. I think access uses * and SQL server uses %.

Hope this helps