FeedBack Form

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

MYSQL INTERVIEW QUESTION & ANSWERS

Follow Us
 
31. What statement do you use to drop the test database?
  DROP DATABASE ‘database name’
Your Name Your Email-ID
Your Answer
 
32. Can we use a single DROP TABLE statement to drop several tables simultaneously?
  Yes, DROP TABLE table1, table12, table13;
Your Name Your Email-ID
Your Answer
 
33. Tell me the result for the following statement. SELECT 1/0;
 
1/0
NULL
Your Name Your Email-ID
Your Answer
 
34. Explain SELECT statement.
  SELECT can serve to evaluate expressions, but it’s more commonly used to retrieve values from a table. To retrieve information from a table, it’s necessary to identify the table by adding a FROM table_name clause following the list of values to display.
Your Name Your Email-ID
Your Answer
 
35. What command do you use to display the structure of the table?
  DESCRIBE ‘ table_name’;
Your Name Your Email-ID
Your Answer