MySQL Clear Screen Window
Mar 01, 2010 - by kurinchilamp / / Post Comment
To clear the screen content in MySQL use the command
mysql> \! clear
Usage of "\!" tells MySQL to pass the command to Linux OS to handle the request.
If you are in a Windows environment (DOS prompt), to pass the control to the OS you can use the command
mysql>system cls
Continue Reading