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

猜你喜欢

转载自dbajun.iteye.com/blog/2197642
今日推荐