-
Display Odd/ Even number of records
Odd number of records:select * from emp where (rowid,1) in (select rowid, mod(rownum,2) from emp);Output:-135Even number of records:select * from emp where (rowid,0) in (select rowid, mod(rownum,2) from emp)Output:-246
-
-
-
-
Data stored in Database
How data is stored in database?
-
-
Which datatype is used for storing graphics and images?
LONG RAW data type is used for storing BLOB's (binary large objects).
-
-
-
-
-
-
-
-
-
-
-
Literal meaning of SQL
What is the literal meaning of SQL
-
Left Outer & Right Outer Join
What is the use of Left Outer & Right Outer Join, Using Equi Join with Union we can do the outer join then why we need to go for Outer Join
-
Oracle SQL Interview Questions
Ans