Why are queries executed from mysql workbench taking much longer than executing them directly from the mysql cli?
问题 I have a query that does multiple joins on several tables and uses a covering index. It seems to run a lot faster when executed directly from the mysql cli instead of from mysql workbench. mysql > some query ... 250 rows in set (0.05 sec) from mysql workbench it takes about ~0.200 sec duration / 0.100 sec fetch Is there a reason beyond latency, authentication and transfer of data why it would be orders of magnitude faster on the console? Does a three-way tcp handshake occur each time a query