In my java web application want to put "global search" text box that would search against multiple tables (different columns) using "Oracle Text"?
e.g.
Table Student {name}
Table Teacher {name}
Table Department{name, description}
Table subject{name, title}
Now what I would like to do is that if user enter "Chem" that this word should be searched against Student:name, Teacher:name, Department:name, Department:description, Subject:name, Subject:title column and it would sort the result according to its Oracle Text Score?
Can anyone advise what the best way to achieve this? Not sure how to search all those column across multiple tables with single query using "Contains" oracle text function?
Also, please assume no relation between tables. Thanks in advance!