You are on page 1of 2

PSEUDOCOLUMNS:

DEFINITION:

TYPES:

 Sysdate
 Systimestamp
 User
 Uid
 Rownum
 Rowid

Sysdate:

 It is used to check the system date.

Syntax:

Select sysdate from dual;

Systimestamp:

 It is used to check the timestamp.

Syntax:

Select systimestamp from dual;

User:

 It is used to check the user

Syntax:

Select user from dual;

Uid:

 It is used to check the user id

Syntax:

Select uid from dual;

Rownum:
 It is used to assign unique number for each and every row( as like
serial number).

Syntax:

Select rownum, column name from table name;

Rowid:

 It is used to assign rowid for each and every row.


 ‘where’ condition checks the rowid and executes the output.

Syntax:

ADVANTAGES:

DISADVANTAGES:

You might also like