i am on excel UiPath and mysql workbench.
with the help of UiPath i am opening mysql. i want to write query into mysql.
i have an excel sheet in which column A has multiple names. i want to put that name in my query. How can i do it.
i read the excel file and save into data table… for each row of column “A” i want to put it as
select * from “PAM Pvt.”;
select * from “PQR pvt.”;
these “PAM pvt” and “PQR pvt” are available in excel’s column A.
i have 500+ entries that i need to find.
please help in this.
Read Excel Data (output to DataTable)
For Each Row in DataTable
SQL Query = "select * from `" & row("ColumnName").ToString() & "`"
Write Line: SQL Query
i have an excel file where in column “Name” contain multiple values in each row
from where i want to select the string and take into my Query in mysql.
Such as
select * from “RAM”;
select * from “Raj”;
select * form “Jack”;
these name are there in rows of column “name”.