oracle has something called row id which nothing but a Pseudo column, is there any alternative of that present in postgres and EDB. if yes that what is that and if not how I can solve this issue.
for refernce
SELECT /*+ PARALLEL(2) FULL(t) */
rowid, account_id, service_id, charge_date
FROMemployee %s t;
The correct replacement is the primary key of the table.
PostgreSQL does have an equivalent to Oracle's
ROWID, which isctid, but owing to the different implementation, that value changes with every update and cannot be used to reliably identify a table row across different SQL statements.