[![enter image description here][1]][1] I have two streams customer and customercontact. I am new to azure data factory. I just want to know which activity in data flow transformation will achieve the below sql query result.
(SELECT * FROM customercontact WHERE customerid IN (SELECT customerid FROM customer) ORDER BY timestamp DESC LIMIT 1)
I can utilize Exist transformation for inner query but I am need some help on how I can fetch the first row after sorting customer contact data.So , basically I am looking for a way to add limit/Top/Offset clause in dataflow.








