欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

批处理模式下使用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