Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> Re: pl/sql help: LAST_ROW_ID question...
> Yes. So how do I take a "row id" and determine the actual row?
ROWID is just the unique key that Oracle uses to identify rows.
example:
select rowid from emp where ename = 'FORD';
ROWID
So, it can be used in reverse like:
select * from emp where rowid = 'AAACqqAACAAAAEHAAM';
EMPNO ENAME JOB MGR HIREDATE SAL COMM DEPTNO
Rock.
Sent via Deja.com http://www.deja.com/
Before you buy.
Received on Fri Sep 08 2000 - 07:34:52 CDT
![]() |
![]() |