I want to write a query to select from a table all rows with the word "piggy" in a column called Description.
SELECT * FROM table WHERE ...?
Thank you!
|
|
|
|
|
|
|
In MySQL,
http://dev.mysql.com/doc/refman/5.0/en/string-comparison-functions.html |
||||
|
|
|
will select and return all rows where the word piggy is part of the value of the column. If you want to count how many rows then:
|
||
|
|
|
|
|
||
|
|
|
|
As mentioned several times you need a Anyway, if you want to implement a search engine, better look for existing API's. I don't know what programming language you're using, but if it was Java, I'd recommend Apache Lucene. |
||
|
|