linux下批量执行mysql指令实例


方法一:-e

mysql -uroot -p123456 -e "use test;select now();"


方法二:< filepath

vi sh

use test;

select now();"

:wq


mysql -uroot -p123456 < ./sh

你可能感兴趣的:(linux下批量执行mysql指令实例)