I have in excel some values(more than 200) in this format
PlayerId,Amount1,Amount2,Amount3
So how can i insert those values in some sql table with excel? How to write INSERT formula in Excel that will insert that values in my sql table(named TABLE1)
so i want to have something like
INSERT INTO TABLE1(PlayerId,Amount1,Amount2,Amount3) VALUES(here put values from excel)