shell操作mysql脚本

1、

!/bin/bash

MYSQL=MYSQL mytest -u test -e 'select * from employees'

2、

!/bin/bash

MYSQL=MYSQL mytest -u test < show tables;
select * from employees where salary<40000;
EOF

3、


shell操作mysql脚本_第1张图片
image.png

4、


shell操作mysql脚本_第2张图片
image.png

你可能感兴趣的:(shell操作mysql脚本)