shell脚本中执行sql的例子

时间:2022-01-22 10:00:36

这个例子演示了如何在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