Is is possible to implement Loops (while/for) in U-SQL without using C#. If no, can anyone share the c# syntax to implement loops in u-sql.
I am extracting files from a particular date to a date, but right now I am extracting this by writing file path manually.
DROP VIEW IF EXISTS dbo.ReadingConsolidated;
CREATE VIEW IF NOT EXISTS dbo.ReadingConsolidated
AS
EXTRACT
ControllerID int?,
sensorID int?,
MeasureDate DateTime,
Value float
FROM
"adl://datalake.azuredatalakestore.net/2015/7/1/Reading.csv",
"adl://datalake.azuredatalakestore.net/2015/7/2/Reading.csv",
"adl://datalake.azuredatalakestore.net/2015/7/3/Reading.csv",
"adl://datalake.azuredatalakestore.net/2015/7/4/Reading.csv",
"adl://datalake.azuredatalakestore.net/2015/7/5/Reading.csv",
"adl://datalake.azuredatalakestore.net/2015/7/6/Reading.csv",
"adl://datalake.azuredatalakestore.net/2015/7/7/Reading.csv"
Note: these files are present in different folder.
Can above thing is possible using loop?