What are the different table present in MYsql?

Answers were Sorted based on User's Feedback



What are the different table present in MYsql?..

Answer / subrat

MyISAM: This is default. Based on Indexed Sequntial Access
Method. The above SQL will create a MyISA table.
ISAM : same
HEAP : Fast data access, but will loose data if there is a
crash. Cannot have BLOB, TEXT & AUTO INCRIMENT fields
BDB : Supports Transactions using COMMIT & ROLLBACK. Slower
that others.
InoDB : same as BDB

Is This Answer Correct ?    13 Yes 1 No

What are the different table present in MYsql?..

Answer / sankar

its not inoDB is InnoDB

Is This Answer Correct ?    9 Yes 1 No

What are the different table present in MYsql?..

Answer / rajesh kumar

BDB supports transaction and page level locking. InnoDB
Supports Foreign Keys, Row level locking & transaction .

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More MySQL Interview Questions

What is an index? How can an index be declared in mysql?

0 Answers  


What is longblob?

0 Answers  


Can mysql scale horizontally?

0 Answers  


How do you start MySQL on Linux?

3 Answers  


What is the difference between the DELETE TABLE and TRUNCATE TABLE commands in MySQL?

1 Answers  






Can you save your connection settings to a conf file?

1 Answers  


What is the latest version of mysql?

0 Answers  


What are numeric data types?

0 Answers  


What is mysqli_free_result?

0 Answers  


What is the data type for image?

0 Answers  


How do I update a variable in mysql?

0 Answers  


How can you retrieve a particular number of records from a table?

0 Answers  


Categories