I tried, but it didn't work, as the data seems not to be in the correct format to be entered in Snowflake.
In the end, I did something like this:
Import data from SQL and display on Retool table
Via a loop enter all the data displayed on Retool table on Snowflake table. However this was done by running:
Insert into table abc
Values (xxx, xxx, xxx, xxx)
Via a loop, this was executed multiple times on its own (once it's done for index 0, it moves to index 1, and so forth until there's no more data to insert).
The reason I'm not giving too many details on my method is that it's not efficient, even though it is working fine. It is inserting row by row, which is taking way too much time.
Unfortunately I tried bulk insert into Snowflake,but the SQL data seems to be in JSON format.