Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 MySQL shell 中的远程登录尝试中运行以下命令。
show variables;
该查询仅显示 233 个变量中的最后 50 个左右。我希望结果是可滚动的,以便我可以查看所有变量。类似于重定向到“少”的东西。
事实上,我很难过。
您可以尝试使用以下命令在 MySQL 命令行中设置“更少”类型的行为:
pager less
此外,可以使用以下命令关闭此行为:
pager
(注意:这可能不适用于所有类型的 MySQL...有关更多信息,请查看文档。)