#!/bin/bash

# 设置MySQL连接信息
host="127.0.0.1"
port="1234"
user="root"
password="xxxx"
database="xxxx"

# 遍历当前目录下的所有.sql文件并执行
for file in *.sql; do
  echo "Executing $file..."
  mysql -h $host -P $port -u $user -p$password $database < "$file"
done
Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐