Results 1 to 3 of 3
Thread: Searching a table technique
-
March 25th, 2009, 02:13 PM #141Registered User
postsSearching a table technique
Hello.
I have an SQL database with a table that has about 20 columns and about 30 rows.
I need to perform a search on the whole table based on the values from one row: I need to find what other rows have similar values with the row that I base my search on. The similarities can vary from 1 column to all 20 columns.
I am not very experienced with SQL, I only know the some basic things and I need help in writing the code to perform the search (PHP).
Please help.
Thank you.
-
March 26th, 2009, 03:09 PM #2
If you are using MySQL, you have to use something called "full-text" search. Your table must be converted to the InnoDB engine (I think) before using the MATCH and AGAINST functions.

-
March 28th, 2009, 03:19 PM #3
SELECT * FROM TABLE WHERE field1 LIKE '%keyword%'; it's very easy query. try to understand fulltext after you learned this query
_________________________
No One born a master,..
But some are born to be masters,..
-----------------------------------------

Reply With Quote

Bookmarks