It depends on how you look at it. MYSQL allows you to run multiple threads at the same time (this applies to available CPU / RAM resources), but this will not allow you to run a single query using multiple threads.
Apache is multithreaded, this is the only way the web application server can respond to multiple requests from different clients.
source share