Keyword Search

I'm trying to implement a keyword search. I currently have one using LIKE %keyword% but this doesn't work for multiple words. Is there a way of implementing a multiple word one ? Using DB2.
[198 byte] By [AlaNioa] at [2007-11-27 5:49:21]
# 1
Presumably this is with a small dataset.You would have to dynamically build up the SQL in code that does the search. This would result in SQL that looks like....1 keyword = where (f like '%key1%')2 keyword = where (f like '%key1%') and (f like '%key2%')
jschella at 2007-7-12 15:35:45 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...