テーブルへの値の挿入を自動化する SQL スクリプトを作成しようとしています。
キー、値の2つの列を持つテーブルtable1があります。
いくつかの行を挿入したい:
INSERT INTO table1 (key, value) VALUES ("tomato1","random_value_1")
INSERT INTO table1 (key, value) VALUES ("tomato2","random_value_2")
INSERT INTO table1 (key, value) VALUES ("tomato3","random_value_3")
INSERT INTO table1 (key, value) VALUES ("tomato4","random_value_4")
これをコマンドラインから実行できるシェルスクリプトに入れるにはどうすればよいですか。
ありがとう