UP10010 Missing ON Condition
While SQL allows executing a JOIN statement without the ON
condition, it is mandatory to provide one in Upsolver.
Possible Causes
You tried to create a job with a
LEFT JOIN
but noON
condition was provided as part of theSELECT
statement.
Possible Solutions
Use the
ON
clause to specify the join conditions and how the rows should be matched:
Last updated