What is ROWID and ROWNUM in SQL with Examples?

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.

                Rowid and Rownum in SQL

What is ROWID?

  1. ROWID is nothing but the physical memory location on which that data/row is stored.ROWID basically returns address of row.
  2. ROWID uniquely identifies row in database.
  3. ROWID is combination of data object number,data block in datafile,position of row and datafile in which row resides.
  4. ROWID is 16 digit hexadecimal number whose datatype is also ROWID Or UROWID
  5. The fastest way to access a single row is ROWID
  6. ROWID is unique identifier of the ROW.

CLICK HERE TO GET 20 IMPORTANT QUESTIONS ON PERFORMANCE TUNING

Example:- select rowid from dual;

AAAAECAABAAAAgiAAA

  • What is ROWNUM?

  1. ROWNUM is magical column in Oracle which assigns the sequence number to the rows retreives in the table.
  2. To limit the values in the table you can use rownum pseudocolumn
  3. ROWNUM is nothing but logical sequence number given to the rows fetched from the table.
  4. ROWNUM is logical number assigned temporarily to  the physical location of the row.
  5. You can limit the values in the table using rownum
  6. ROWNUM is also unique temparary sequence number assigned to that row.

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
retrieved along with select statement output.

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 .

CLICK HERE TO GET 20 SQL INTERVIEW QUESTIONS FOR FRESHER.. 

HOME

Amit S

Oracle Consultant with vast experience in Oracle BI and PL/SQL Development. Amiet is the admin head of this website who contributes by preparing tutorials and articles related to database technologies. He is responsible to manage the content and front-end of the website.

Recent Posts

The Essential Guide to Cryptocurrency Exchange Platform Development for Beginners and Beyond

Introduction Cryptocurrencies took the world by storm, setting up a new financial system and breaking…

5 months ago

Top 20 System Administrator Interview Questions and answers

In my previous article I have given Top 20 technical support interview questions with its…

8 months ago

Desktop Support Scenario Based Interview Questions

In my previous articles I have given 15 most asked desktop support interview questions with…

8 months ago

How Do Business Analysts Use SQL for Their Needs?

A business analyst is someone who is versed in processes of data analysis used for…

8 months ago

Top 15 Control-M Interview Questions with Answers

In my previous article I have already given top questions and answers for Desktop support…

8 months ago

Top 20 SQL Interview Questions for Production Support

In my previous article I have given unix production support interview questions and answers. In…

8 months ago