Lol that's nothing, wait until you have a query that runs into the PHP max execution time of 30s
Debugbar just colors and draws the query proportional to all of the other queries
The LIKE %value% statement is going to slow the query down since it probably can't use an index. You can try using value%, or try creating a full-text index on that column (but then you're trading speed for more space).
Select only the columns which you need to show on frontend. For Example: If you need to display name, image and short_description then select this 3 columns from the table. Instead of selecting all columns from the table.