I am doing a search engine implementation in java (eclipse)
i have a table named tbl_index where i save all the keyWords with a column named keyWord against which i save a URL in a column url.
Now if a have a search term that consists of more than one words, how would i write a query to find all the URLs which have all the words.
table Info:
column1 : keyWord (nvarchar(50))
column2 : url (varchar(800))
these two are collectively the primary key of the table. Please suggest a way in which i dont have to change my talbe structure. Although it would be helpful to point out any mistakes in my current schema.
Also please suggest some good indexing techniques to index the keywords i get from the html of the website(the column keyWord).
