# MySQLBinlog 关于 mysqlbinlog ,以下说法正确的是: 1. mysqlbinlog 命令行采用和 mysql 命令行一致的连接参数登录服务器,并通过 --read-from-remote-server 读取远程服务器 2. mysqlbinlog 命令行通过命令行参数设定分析的目标文件 3. 可以指定 -o 参数设定忽略前 n 条操作记录 4. 可以通过 --start-datetime 和 --stop-datetime 指定要分析的时间段 5. 可以通过 --start-position 和 --stop-position 指定要分析的操作序列的范围
点击进入[MySQL实战练习环境](https://mydev.csdn.net/product/pod/new?image=cimg-centos7-skilltreemysql&connect=auto&create=auto&utm_source=skill)。 * `show databases` 列出所有数据库 * `show tables` 列出所有表 ## 答案 全都正确 ## 选项 ### A ``` 1, 2, 3, 4 ``` ### B 全都错误 ### C ``` 1,2, 4 ``` ### D ``` 2, 3, 5 ```