How do I rewrite the following query as a join? I think rewriting it as a join would perform better (I'm theorizing) but I'm having hard time getting the join right. Any help is much appreciated.
SELECT O.JOBNUM, O.JOBNAME, O.STARTTS,
(SELECT
MIN(I.STARTTS)
FROM TABLE1 AS I
WHERE
I.STARTTS > O.STARTTS AND
I.JOBNAME = O.JOBNAME)
AS ENDTS
FROM TABLE1 AS O;
Basically, the above query is used to retrieve the ENDTS of any given task instance. The ENDTS is not saved and is calculated automatically as the same tasks run in a loop so the ENDTS of any given task is the the STARTTS of the same task (identified by name) when it runs again. If a task has not finished running yet, a NULL is fine for the ENDTS.
Thanks you for your help in advance.