構文
VALUESをカンマ(,)で区切って指定するだけです。
INSERT INTO `テーブル名` (id, name) VALUES (1, 'foo') , (2, 'bar') , (3, 'hoge');
通常のINSERTと同様に、すべての列に順番通りデータを追加する場合はカラム名の記述は不要です。
INSERT INTO `テーブル名` VALUES (1, 'foo') , (2, 'bar') , (3, 'hoge');
実行例
mysql> insert into test(id, name) -> values (1, 'foo') -> , (2, 'bar') -> , (3, 'hoge'); Query OK, 3 rows affected (0.01 sec) Records: 3 Duplicates: 0 Warnings: 0 mysql> select * from test; +----+------+ | id | name | +----+------+ | 1 | foo | | 2 | bar | | 3 | hoge | +----+------+ 3 rows in set (0.00 sec)
参考
関連書籍
SQL実践入門──高速でわかりやすいクエリの書き方 (WEB+DB PRESS plus)
posted with amazlet at 16.04.22
ミック
技術評論社
売り上げランキング: 7,281
技術評論社
売り上げランキング: 7,281