Linux命令行与shell脚本(18)--shell连接mysql

在脚本中使用数据库

  • 连接数据库并查询表
#!/bin/bash

mysql=`which mysql`;
$mysql shell -u root -proot -e "select * from employees" #连接shell数据库,-e后指定执行的语句
  • 执行多条命令
mysql=`which mysql`;
$mysql shell -u root -proot <#shell会将EOF分隔符之间的所有内容都重定向给mysql命令
show tables;
select * from employees where salary > 4000;
EOF  #注意EOF必须为一行的开头,不能缩进,否则不起作用
  • 格式化数据
mysql=`which mysql`;
dbs=`$mysql shell -u root -proot -Bse "show databases;"`  #-B参数指定mysql程序工作在批处理模式,-s参数使得列表题和格式化符号都被禁用
for db in $dbs
do
        echo $db
done

你可能感兴趣的:(Linux)