You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Exception in thread "main" java.lang.NullPointerException: Cannot invoke "Object.toString()" because "stm" is null
at net.sf.jsqlparser.parser.CCJSqlParser.Statement(CCJSqlParser.java:452)
SQL Example:
SELECT EMP_ID, EMP_NAME,
CONNECT_BY_ROOT (EMP_NAME ||'_'|| EMP_ID) AS ROOT_MANAGER,
SYS_CONNECT_BY_PATH(EMP_NAME, ' -> ') ASPATHFROM EMPLOYEES
START WITH MANAGER_ID IS NULL
CONNECT BY PRIOR EMP_ID = MANAGER_ID