I have a stream analytics job that recieves input from an IOT hub and writes data to an azure SQL database. My current query is as follows
Select [Column1,Column2...] INTO [Output] from [Input]
Is it possible to select only specific number of rows? I am looking for something like the following
Select TOP 10 [Column1,Column2...] INTO [Output] from [Input]
Any suggestions would be appreciated. Thanks