shell脚本中执行mysql命令

Posted junmail

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本中执行mysql命令相关的知识,希望对你有一定的参考价值。

1.mysql -hhostname -uuser -ppsword -e "mysql_cmd"

2.

mysql -hhostname -uuser -ppsword << EOF
    mysql_cmd
EOF

如下简单例子:

#!/bin/bash
mysql -hservicedb-online -uroot -proot123 -e "use test;select * from tests;"  #方法1实例
mysql -hservicedb-online -uroot -proot123 << EOF   #方法2实例
use test;
select * tests;
EOF

 

以上是关于shell脚本中执行mysql命令的主要内容,如果未能解决你的问题,请参考以下文章

关于在shell脚本中修改mysql初始密码的求助

shell脚本中执行mysql sql脚本文件并传递参数

一个备份MySQL数据库的简单Shell脚本

shell脚本中执行sql命令

Centos 执行shell命令返回127错误

在shell脚本中使用 isql 执行SQL语句 查询sybase数据库中满足条件的记录条数,怎么把查询结果赋给变量?