debian - How can I see how long statements take to execute on the mysql command line? -
When I execute a statement on the mysql command line, there should always be a way to demonstrate how long the command Started running?
It shows that information is executed for every command:
mysql> Select MD5 ('dkejde'); + ---------------------------------- + | MD5 ('dkejde') | + ---------------------------------- + | 3960c3b0aa4acc97ca277cdea69775fd | + ---------------------------------- + 1 line set (0.04 seconds) mysql & gt; Show database; ... 38 rows in the set (0.29 seconds)
Do not you see this?
Comments
Post a Comment