In this article I would like to explain ‘What is ROWID and ROWNUM in SQL?’. Pseudocolumns are actually associated with the table data but it has nothing to do with table data.ROWID & ROWNUM are Pseudocolumns which are not actual columns in the table but behave like actual columns. You can select the values from Pseudocolumns like ROWID & ROWNUM.ROWID & ROWNUM are very important Pseudocolumns in oracle which is used in data retrieval.
CLICK HERE TO GET 20 MOST IMPORTANT COMPLEX SQL QUERIES..
Pseudocolumns are nothing but logical columns which behaves like a physical columns in database.
CLICK HERE TO GET 20 IMPORTANT QUESTIONS ON PERFORMANCE TUNING
Example:- select rowid from dual;
AAAAECAABAAAAgiAAA
Example:
Select Rownum from dual;
Answer- 1
So in above article we have dicussed the difference between ROWID & ROWNUM.Following is the difference between ROWID & ROWNUM in tabular format:
ROWID | ROWNUM |
1.ROWID is nothing but Physical memory allocation
2.ROWID is permanant to that row which identifies the address of that row. 3.ROWID is 16 digit Hexadecimal number which is uniquely identifies the rows. 4.ROWID returns PHYSICAL ADDRESS of that row. 5. ROWID is automatically generated unique id of a row and it is generated at the time of insertion of row. 6. ROWID is the fastest means of accessing data. |
1. ROWNUM is nothing but the sequence which is allocated to that data retreival bunch.
2. ROWNUM is tempararily allocated sequence to the rows. 3.ROWNUM is numeric sequence number allocated to that row temporarily. 4.ROWNUM returns the sequence number to that row. 5. ROWNUM is an dynamic value automatically 6.ROWNUM is not related to access of data. |
Hope you like this article on What is ROWID and ROWNUM in SQL? . Kindly comment if any suggestions .
In my previous articles I have given the roles and responsibilities of L1,L2 and L3…
In my previous articles i have given the hierarchy of production support in real company…
In this article i would like to provide information about production support organization structure or…
In my previous article I have given roles for L1 and L2 support engineer with…
I have started this new series of how to become application support engineer. This article…
In this series we are starting with Roles and responsibilities of L1 support engineer .…