I have a table called table1 with 3 columns, a, b, and c.
b is varchar(600), say, and I wish to return the int from column a, say.
Let's assume the term I am looking for is "This term".
What would a single complete example be with the basic syntax required to search for this phrase as above in b and return the respective a in MySQL as the Internet is totally unclear on this?
Basically, what would the mysql_query string look like for a text search?