FeedBack Form

Your Name :
Your Email :
Your Location :
Your Message :
   
FeedBack

SQL INTERVIEW QUESTION & ANSWERS

Follow Us
 
101. What is the purpose of the WHERE clause in an UPDATE statement?
  The WHERE clause specifies a condition or set of conditions that act as a filter for the rows that are updated. Only the rows that meet the specified conditions are updated.
Your Name Your Email-ID
Your Answer
 
102. What is a VIEW?
  A View is a database object that is a logical representation of a table. It is derived from a table but has no storage space of its own and often may be used in the same manner as a table.
Your Name Your Email-ID
Your Answer
 
103. Describe Aggregate Functions?
  SQL provides seven built-in functions to facilitate query processing. The seven built-in functions are COUNT, MAX, MIN, SUM, AVG, STDDEV and VARIANCE.
Your Name Your Email-ID
Your Answer
 
104. What is a ROWID?
  ROWID is the logical address of a row, and it is unique within the database.
Your Name Your Email-ID
Your Answer
 
105. What are the steps to design a good database?
 
  • First find out the requirements of the user.
  • Design a view for each important application Integrate the views giving the conceptual schema, which is the union of all views
  • Map to the data model provided by the DBMS (usually relational)
  • Design external views
  • Choose physical structures (indexes, etc.)
Your Name Your Email-ID
Your Answer