What is pseudo column ?
Answers were Sorted based on User's Feedback
Answer / senthilnathan
A pseudo column is an item of data which does not belong in
any particular table but which can be treated as if it did.
Any SELECT list of columns can include these pseudo
columns.
SYSDATE current date and time
ROWNUM sequence number assigned to retrieved rows
ROWID unique identifier for a row
UID number associated with a user
USER userid of current user
Is This Answer Correct ? | 43 Yes | 12 No |
Answer / mail2sentha
pseudo column is a act as an database table column,but its
not a actual column in a table,we can fetch value from a
pseudo column.
ex.
user,usid,rownum,rowid,level,nextval,curval,sysdate
Is This Answer Correct ? | 29 Yes | 6 No |
Answer / nazeer
pseudo column act as database table column, but not actually the exact column in the table....we can fetch values from the pseudo column....
The Columns are..
user,
userid,
rownum,
rowid,
level,
nextval,
curval,
sysdate.......
Is This Answer Correct ? | 14 Yes | 2 No |
Answer / nagarjuna reddy
A pseudo column is a column but it is not physically existed
in the table.if we want to use these column by specifying
externally in select statement for projection or selection.
but we can't insert,delete and update pseudo columns.
some of pseudo columns are
1 ROWID
2 ROWNUM
3 LEVEL
4 CURRVAL
5 MEXTVAL
etc...
Is This Answer Correct ? | 9 Yes | 3 No |
Answer / sudhir pradhan
pseudo column is false state. pseudo column behave like a table column, but it is actually not stored in table.
Is This Answer Correct ? | 0 Yes | 1 No |
how would you write a query to select all teams that won either 2, 4, 6 or 8 games? : Sql dba
Why is nosql good?
How do you write an inner join query?
table name :Tab fields name 1.trx_no (pk) 2.trx_date 3.account code (7 char) 4.account type (1 char) 5.amt Tab contains account code day wise debit and credit transaction , account type fiels can have 2 value D for debit and c for Credit . write a query to display the account code wise total debit and credit bal for the month of april 2004. write a query to display account code wise new amt credit for the april 2004
What are the methods of filing?
If I have a table T with 4 rows & 2 columns A & B. A has values 1,2,3,4. and B has 10,20,30,40. Write an Update SQL query which can Swap the values of A & B for all records. (Do not use a sub-query)
What are %type and %rowtype for?
How packaged procedures and functions are called from the following?
Can we use distinct and group by together?
Do we need to create index on primary key?
What is trigger in pl sql?
What is set serveroutput on?