テキストファイルに書いたmysqlのクエリ文を実行するには「source」コマンドを使う。
用意したファイル
——————
test.txt
——————
ファイルの中身
——————
insert into テーブル名 (カラム名) VALUES (‘内容1’),(‘内容2’)
——————
ターミナルでさくらのサーバーにログインして、mysqlに接続する。
データベースを選択して、「source」コマンドを実行する。
実際のコマンド
——————
source /home/username/www/test.txt
——————