Monday, August 17, 2020

How do I find the last row inserted?

  select

  *

from

  EMP_LEAVE

where

  rowid =(

    select

       max(rowid)

    from

       EMP_LEAVE);

No comments:

Post a Comment

To generate a PDF using JavaScript in Oracle APEX from a collection

  To generate a PDF using JavaScript in Oracle APEX from a collection, you can follow these steps: 1. Create a button or link on your APEX p...