Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is a pseudo column. Give some examples?
What is a pseudo column. Give some examples?
✍: Guest
Information such as row numbers and row descriptions are automatically stored by Oracle and is directly accessible, ie. not through tables. This information is contained within pseudo columns. These pseudo columns can be retrieved in queries. These pseudo columns can be included in queries which select data from tables.
Available Pseudo Columns
· ROWNUM - row number. Order number in which a row value is retrieved.
· ROWID - physical row (memory or disk address) location, ie. unique row identification.
· SYSDATE - system or today’s date.
· UID - user identification number indicating the current user.
· USER - name of currently logged in user.
2011-11-23, 3105👍, 0💬
Popular Posts:
What is shadowing ? When two elements in a program have same name, one of them can hide and shadow t...
Can you tell me how to check whether a linked list is circular? Create two pointers, and set both to...
What are urlencode() and urldecode() functions in PHP? string urlencode(str) - Returns the URL encod...
Where Is the Submitted Form Data Stored? - PHP Script Tips - Processing Web Forms When a user submit...
If we inherit a class do the private variables also get inherited ? Yes, the variables are inherited...