Import Data from in a Table
Then do something like this
Declare @v_Query nvarchar(max) = ''
Select @v_Query = @v_Query + [ColName] +' ;'
from [Excel_Table]
EXEC sp_executesql @v_Query
@v_Query
this will execute your all queries in one single batch.
hope it helps