convert excel worksheet to sql script

前端 未结 3 2131
醉话见心
醉话见心 2020-12-31 13:00

I have a excel worksheet (.xls). I need to convert it into sql script. The single excel worksheet consists of multiple tables. So the resultant script should have multiple c

3条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-31 13:53

    There is also a simple method to group insert from Excell: simply if your data is in columns B,C and D in sepearate column create formula: ="insert into values('" &B1 &"','" & C1 & "','"&D1&"')

提交回复
热议问题