-
-
Using the following Customer, Country and Orders tables: Customer Table c_id c_name c_country_id 1 John 1 Country Table country_id Name 1 US 2 UK Orders Table o_id c_id Qty o_deliver_country_id 1 1 10 1 2 1 20 2
I need the following output in SQLc_id c_name c_country_lives qty o_deliver_country 1 john US 10 US 2 john US 20 UK
-
-
What is syntax for dropping a procedure and a function .Are these operations possible?
Drop Procedure procedure_nameDrop Function function_name
-
-
-
DOS command
How to execute DOS Commands from SQL prompt?
-
What WHERE CURRENT OF clause does in a cursor?
LOOPSELECT num_credits INTO v_numcredits FROM classesWHERE dept=123 and course=101;UPDATE studentsSET current_credits=current_credits+v_numcreditsWHERE CURRENT OF X;END LOOPCOMMIT;END;
-
-
Explain Plan and TKPROFF
What is explain plan and what is tkproff?
-
Between Operator for Date Fields
What is the disadvantage of using "BETWEEN" for date feilds
-
Access data from Database
In which manner the SQL commands access the data from database?
-
Types of Databases
How many types of databases are there? What are they?
-
-
-
-
Non Cluster Index
1. How many non cluster index we have use in one table?2. How we set the priority in the cluster index?3. What is co-releated sub query?
-
-
-
Oracle SQL Interview Questions
Ans