does exist the command that search a part of field value in MySQL DB:
Eg. select * from table where field1 CONTAIN hello
What is the real command instead CONTAIN?
Read the mysql manual about the LIKE statement.
select * from table where field1 like '%hello%'
Andreas