I got a table structure looking like this:
table_items
+----+-------+
| id | title |
+----+-------+
| 1 | Hello |
+----+-------+
table_values
+----+----------+--------------+---------------------+
| id | items_id | columnname | value |
+----+----------+--------------+---------------------+
| 1 | 1 | description | This is the desc... |
+----+----------+--------------+---------------------+
| 1 | 1 | hobby | My hobby is comp... |
+----+----------+--------------+---------------------+
I wan't to search in each of the value fields for the Hello item and all other items on the site. What's the best way of doing that?