我们可以在 unix/linux 中使用以下脚本在所有数据库中运行 sql
#!/bin/sh
all_dbs="$( mysql -hlocalhost -uroot -pmysql -Bse 'show databases')"
for db in $all_dbs
do
if test $db != "information_schema" -a $db != "mysql" -a $db != "my_db"
then
echo $db
mysql -hlocalhost -uroot -pmysql $db < temp.sql
fi
done
temp.sql 包含选择语句
当我使用 Windows 时,有人可以帮助我使用 Windows 等效脚本吗?
提前致谢, 凯瑟尔