Excel插入数据库

我在这个格式中有一些超过200的值(超过200)

PlayerId,Amount1,Amount2,Amount3 

那么如何插入这些值与Excel中的某些SQL表? 如何在Excel中编写INSERT公式,将这些值插入到我的sql表(名为TABLE1)

所以我想有像INSERT INTO TABLE1(PlayerId,Amount1,Amount2,Amount3) VALUES(here put values from excel)

你可以把它放在另一个CELL上,然后把它拖放到所有的行上

 =CONCATENATE("INSERT INTO TABLE1(PlayerId,Amount1,Amount2,Amount3) values(",A1,",",B1,",",C1,",",D1,")")