-1
我想在我的MySQL表中插入多條記錄:在我的MySQL表中插入多條記錄
INSERT INTO example
(example_id, name, value, other_value)
VALUES
(1, 'Name 1', 'Value 1', 'Other 1'),
(2, 'Name 2', 'Value 2', 'Other 2'),
(3, 'Name 3', 'Value 3', 'Other 3'),
(4, 'Name 4', 'Value 4', 'Other 4');
...
我可以做到這一點的循環?類似的東西:
for (i=1 ; i<100 ; i++)
INSERT INTO example
(example_id, name, value, other_value)
VALUES
(i, 'Name '+i, 'Value '+i, 'Other '+i);
可能重複[對於MySQL的循環示例](HTTP://計算器.com/questions/5125096/for-loop-example-in-mysql) – AeroX
您是否嘗試使用mysql或者使用php –