意外输入无效斜线命令后如何恢复 mysql 工作提示?

意外输入无效斜线命令后如何恢复 mysql 工作提示?

我犯了一个错误,尝试使用 postgres\d来描述 mysql 中的表。

但是在 mysql 中\.运行一个名为“ source (\.) Execute an SQL script file. Takes a file name as an argument.”的脚本。

我不知道如何退出此状态。无论按多少次 \c 或 ctrl-C 似乎都无法让我回到可以再次运行命令的状态。

mysql> \d tablename
mysql> show tables;
    -> \c
mysql> show tables;
    -> ^C
mysql> show tables;
    -> \q
Bye

更多示例:

mysql> \d tablename
mysql> show databases;
    -> \x
    -> \c
mysql> \x
mysql> show databases;
    -> \r
Connection id:    274
Current database: *** NONE ***

mysql> show databases;
    ->

相关内容