"Search" (in this case) is about how MySQL is constructed (it is a relational database) and about how tables / cols are assigned importance / relationships based on user queries.
Example:
INSERT INTO books VALUES (1,'First Book',NULL);
INSERT INTO books VALUES (2,'Second Book',NULL);
INSERT...