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
Best exemplified by an example: SELECT CHAR(emp_no % 10000) FROM "test_emp";
The result will have the column name CHAR(((emp_no{f}#14) % 10000)). It should be CHAR((emp_no % 10000)).