I use Contains.select * from cat_tableswhere contains(description_table,'computer') UNIONselect * from cat_tableswhere contains(description_table,'mouse')
These code works cause i only need to search for both computer and mouse.But i want to do something automatic like, having a Parameters TableID ParameterValue1 Computer2 Mouse3 Keyboard4 somethingElseAnd do something like the following algorithmselect * from cat_tableswhere contains(description_table,(SELECT ParameterValue FROM Parameters_Table))
Can you do something like that?