shell脚本中执行sql的例子

这个例子演示了如何在shell脚本中执行多个sql来操作数据库表。

#! /bin/sh
USER_HOME=/home/`whoami`
. /etc/profile
if [ -f ${USER_HOME}/.bash_profile ];
then
. ${USER_HOME}/.bash_profile
fi mysql -h 20.1.4.89 -P -ujifei30 -pNapnUszJD -Dtpssprod <<EOF
select table_name from information_schema.tables
where table_schema = 'TPSSPROD';
select now();
exit
EOF
上一篇:Python成长之路第二篇(1)_数据类型内置函数用法


下一篇:python成长之路——第二天