-
I have an SQL statement I was hoping to generate using ES2008 Dynamic Query - it contains a derived table in the FROM clause. Is it possible to do this in ES? Code: SELECT p.PackageId, p.InitialEstimateDays, p.UserPriority, x.StreamTotalPriority FROM Package p INNER JOIN ( SELECT ps.StreamId, SUM (UserPriority...