-
-
Pair Wise & Non-Pair Wise Columns
What are Pair Wise & Non-Pair Wise Columns?
-
There is a % sign in one field of a column. What will be the query to find it?
'' Should be used before '%'.
-
Difference between nested query,sub query and nested query?
What is difference between nested query,sub query and nested query? explain clearly with an example?
-
-
Rename a Column
How to rename a column in a SQL table?
-
-
-
-
-
View - Base Tables
Does View occupy memory? If we delete the base table of existing view, What happens?
-
HAVING vs WHERE Clause
Where clause restricts rows, what does having clause restricts ?1. only group results.2. rows results.3. both rows and groups result.
-
How will you delete duplicating rows from a base table?
Delete from table_name where rowid not in (select max(rowid) from table group by duplicate_values_field_name); ordelete duplicate_values_field_name dv from table_name ta where rowid <(select min(rowid) from table_name tb where ta.dv=tb.dv);
-
Is it possible to create Synonym for Triggers ?
If your answer is yes, explain the steps.
Oracle SQL Interview Questions
Ans