批处理模式下使用MYSQL mysql -e
程序员文章站
2022-04-01 20:45:11
...
http://blog.csdn.net/peopleqinlei/article/details/50978474
mysql -e "source batch-file"
mysql -uroot -pxxx -s -e "select * from xxx.xxx;"
mysql -uroot -pmysqluser -vv -s -e "select * from xxx.xxxlimit 30;"
mysql --help
...
-e, --execute=name Execute command and quit. (Disables --force and history
file.)
-s, --silent Be more silent. Print results with a tab as separator,
each row on new line.
...
###或者使用shell脚本更容易执行
#!/usr/bin/env bash
while true
do
mysql -uroot -pxxx -s -e "select * from xxx.xxx;"
sleep 1
done
上一篇: 中车株洲所超级水下机器人全球首发
下一篇: 机器人就在我们身边
推荐阅读
-
解析windows下使用命令的方式安装mysql5.7的方法
-
MySQL 设计和命令行模式下建立详解
-
Windows7下Python3.4使用MySQL数据库
-
详解docker下的Mysql镜像的使用方法
-
PHP下使用mysqli的函数连接mysql出现warning: mysqli::real_connect(): (hy000/1040): ...
-
linux下使用RPM安装mysql5.7.17
-
CentOS 7下使用RPM安装mysql5.7.13
-
Windows7下安装使用MySQL8.0.16修改密码、连接Navicat问题
-
mysql下IF语句的简单使用
-
CentOS 7下使用rpm包安装mysql 5.7.18