Oracle SQL Interview Questions
Oracle SQL Interview Questions
Here are some of the frequently asked SQL interview questions. Enjoy!
Q10. What do you mean by DBMS? What are its different types?
A database is a structured collection of data.
A DBMS allows a user to interact with the database. The data stored in the database can
be modified, retrieved and deleted and can be of any type like strings, numbers, images
etc.
Q12. What is the difference between a Primary Key & a Unique Key?
Primary key is used to identify each table row uniquely, while a Unique Key prevents
duplicate values in a table column.
The difference between RAW & VARCHAR2 datatype is that PL/SQL does not recognize
this data type and hence, cannot do any conversions when RAW data is transferred to
different systems. This data type can only be queried or inserted in a table.
Q20. How can you insert NULL values in a column while inserting the data?
NULL values can be inserted in the following ways:
• Implicitly by omitting column from column list.
• Explicitly by specifying NULL keyword in the VALUES clause
Q21. How can you fetch common records from two tables?
You can fetch common records from two tables using INTERSECT. For example:
Select studentID from student
INTERSECT
Select StudentID from Exam;
Example: [Select SUBSTR (‘India is my country’, 1, 4) from dual] will return “Indi”.
INSTR will return the position number of the sub-string within the string.
Example: [SELECT INSTR (‘India is my country’, ‘a’) from dual] will return 5.
Q24. What do you mean by a database transaction & what all TCL statements are
available in Oracle?
Transaction occurs when a set of SQL statements are executed in one go. To control the
execution of these statements, Oracle has introduced TCL i.e. Transaction Control
Statements that use a set of statements.
Table: Student_Information
Field: Stu Id, Stu Name, Stu Marks
Q38. What are the set operators UNION, UNION ALL, MINUS & INTERSECT meant to
do?
Set operator facilitates the user to fetch the data from two or more than two tables at
once if the columns and relative data types are same in the source tables.
• UNION operator returns all the rows from both the tables except the duplicate rows.
• UNION ALL returns all the rows from both the tables along with the duplicate rows.
• MINUS returns rows from the first table, which does not exist in the second table.
• INTERSECT returns only the common rows in both the tables.
Q39. What are the various constraints used in Oracle?
Following are constraints used:
• NULL – It is to indicate that particular column can contain NULL values
• NOT NULL – It is to indicate that particular column cannot contain NULL values
• CHECK – Validate that values in the given column to meet the specific criteria
• DEFAULT – It is to indicate the value is assigned to default value
Q40. What is cross join?
Cross join is defined as the Cartesian product of records from the tables present in the
join. Cross join will produce result which combines each row from the first table with
the each row from the second table.
BETWEEN operator is used to display rows based on a range of values in a row whereas
the IN condition operator is used to check for values contained in a specific set of values.
SELECT * FROM Students where ROLL_NO BETWEEN 10 AND 50;
SELECT * FROM students where ROLL_NO IN (8,15,25);
Q43. Can we convert a date to char in Oracle and if so, what would be the syntax?
We can use the TO_CHAR function to do the above conversion.
[SELECT to_char (to_date (’30-01-2018′, ‘DD-MM-YYYY’), ‘YYYY-MM-DD’) FROM dual;]
Relationships: Relation or links between entities that have something to do with each
other. For example – The customer name is related to the customer account number and
contact information, which might be in the same table. There can also be relationships
between separate tables (for example, customer to accounts).
Q46. What is ACID property in a database?
ACID stands for Atomicity, Consistency, Isolation, Durability. It is used to ensure that the
data transactions are processed reliably in a database system.
Atomicity: Atomicity refers to the transactions that are completely done or failed
where transaction refers to a single logical operation of a data. It means if one part of
any transaction fails, the entire transaction fails and the database state is left
unchanged.
Consistency: Consistency ensures that the data must meet all the validation rules. In
simple words, you can say that your transaction never leaves the database without
completing its state.
Durability: Durability means that if a transaction has been committed, it will occur
whatever may come in between such as power loss, crash or any sort of error.
Q47. Whether any commands are used for Months calculation? If so, What are
they?
In Oracle, months_between function is used to find number of months between the
given dates.
Months_between(Date 1, Date 2)