Answers for "oracle apex who is connected"

SQL
2

oracle apex who is connected

SELECT *
FROM APEX_WORKSPACE_LOG_SUMMARY_USR
WHERE WORKSPACE = 'workspace_name'
  AND APEX_USER != 'nobody'
  AND LAST_VIEW >= trunc(sysdate);
Posted by: Guest on January-28-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language