views:

88

answers:

1

I've got a requirement where a user enters a few terms into a search box and clicks "go". Does anyone have any good resources on how to implement a dynamic search that spans a few database tables? I am using jsp,servelt,jpa as front end and mysql at back end of my project.

Thanks, Satya

A: 

Research on something called "MySQL fulltext search functions". These allows you to search for words in multiple columns of a table.

Salman A