What are the different table present in MYsql?
Answers were Sorted based on User's Feedback
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 |
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 |
What is difference between oracle and mysql?
Does mysql use tcp or udp?
What is a table schema?
How to use regular expression in pattern match conditions?
What is difference between schema and table?
What are stored procedures and functions?
How do I update a variable in mysql?
What is definer in mysql?
How you will Show unique records.
What is the difference between char and varchar in mysql?
Is mysql case-sensitive?
What is the use of mysqli_num_rows?