Mysql - 从“显示主状态”中选择值询问
你好 我如何从“SHOW MASTER STATUS”查询中仅选择位置值 诸如
select position from (show master status);
感谢您的时间和帮助之类的东西
hi
How can i select just the position value from the 'SHOW MASTER STATUS' query
exp something like
select position from (show master status);
thanks for your time and help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不幸的是,没有直接的表来查询该信息。
如果您使用 PHP,您可以按如下方式检索它:
如果您通过 shell 脚本需要它,请执行以下操作:
Unfortunately, there is no direct table to query that info.
If you use PHP, you can retrieve it as follows:
If you need it via shell scripting you do the following:
在 Linux 中,您可以在终端中键入以下命令,这将为您提供 Seconds_Behind_Master 的单个值。
In Linux you can type the following command in the terminal this will give you the single value of Seconds_Behind_Master.
在 Linux bash 脚本中,您可以通过 mysql 客户端尝试以下命令来获取文件和位置
对于文件:
对于位置
In Linux bash script you can try below command through mysql client to get the File and Position
For File:
For Position