What are the different tables present in mysql, which type
of table is generated when we are creating a table in the
following syntax: create table employee(eno int(2),ename
varchar(10)) ?
Answer Posted / vikash shaw
Total 5 types of tables we can create in mysql
1. MyISAM
2. Heap
3. Merge
4. INNO DB
5. ISAM
MyISAM is the default storage engine as of MySQL 3.23. When you fire the above create query MySQL will create a MyISAM table.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is the difference between php and javascript?
Which function Returns the time of sunrise for a given day / location in PHP.
Write a hello world program using variable?
What is difference between get and post?
How to generate a form?
How can i execute PHP File using Command Line?
Which function parses an English textual date or time into Unix timestamp in PHP.
How can you get the size of an image in PHP?
How can you send http header to the client in php?
What is the use of htmlspecialchars in php?
Is it more secure to use cookies to transfer session ids?
What is difference between static and constant in php?
Which framework is best for php?
Why is php used for web development?
Tell me how comparison of objects is done in php5?