FeedBack Form

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

MYSQL INTERVIEW QUESTION & ANSWERS

Follow Us
 
1. What command do you use to display all databases?
  SHOW DATABASES;
Your Name Your Email-ID
Your Answer
 
2. What command do you use to display current Date and Time ?
  SELECT NOW();
Your Name Your Email-ID
Your Answer
 
3. Tell me some important rules for mysql.
 
  • Comments and portability
  • Case-sensitivity
  • Escape characters
  • Naming limitations
  • Quoting
  • ime zones
  • haracter sets and collations
Your Name Your Email-ID
Your Answer
 
4. What are case-sensitive in mysql?
 
  • Databases
  • Tablespaces
  • Tables
  • Views
  • Aliases
  • Triggers
  • Log file groups
Your Name Your Email-ID
Your Answer
 
5. Define DESCRIBE Statement and SHOW COLUMS Statement.
 
DESCRIBE SHOW COLUMS
DESCRIBE tblname; SHOW COLUMNS FROM tblname;
DESCRIBE tblname fldname; SHOW COLUMNS FROM tblname WHERE Field='fldname';
DESCRIBE tblname 'fldname'; SHOW COLUMNS FROM fldname WHERE Field LIKE 'fldname';
Your Name Your Email-ID
Your Answer