How to clear mysql screen console in windows?

前端 未结 23 1959

The title is my question. I googled and try something like

mysql> !\\ clear
mysql> !\\ cls
mysql> system cls
mysql> system clear 

blah blah ...
         


        
相关标签:
23条回答
  • I used the command line client prompt and to clear the screen I typed:-

    system cls

    0 讨论(0)
  • 2020-12-29 01:53

    mysql console can cleared out on windows by using shortcut key

    CTRL + L

    0 讨论(0)
  • 2020-12-29 01:53

    Click with contextMenu button on Mysql prompt and choose "Scroll", because I didn't find any way to clean too. =P

    0 讨论(0)
  • 2020-12-29 01:54

    EDIT:
    I don't think Any of the commands will work. In linux Ctrl-L will do the job. in windows there is no equivalent. You can only Exit MySql, Type CLS and then re-enter MySql.

    0 讨论(0)
  • 2020-12-29 01:54

    you can type the following step:

    mysql> exit;

    C:\xampp\mysql\bin> cls

    C:\xampp\mysql\bin> mysql -u root -h localhost

    it's work!

    0 讨论(0)
  • 2020-12-29 01:55

    For Window 10

    Use the command system cls and this will clear the MYSQL Command Line window in Windows

    0 讨论(0)
提交回复
热议问题