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 javascript and php?
What is htaccess? Why do we use this and where?
What is array filter in php?
Php says that an array is an ordered map. But how the values are ordered in an array?
What is smarty?
Explain me is it possible to destroy a cookie?
Why do we use query?
What are the uses of explode() and implode() functions?
What is session_start () in php?
How to remove all duplicate values in array in php?
What is the difference between for and foreach loop in php?
What is the difference between == and === operator in PHP?
When viewing an html page in a browser, the browser often keeps this page in its cache. What can be possible advantages/disadvantages of page caching? How can you prevent caching of a certain page (please give several alternate solutions)?
What is the difference between for and foreach in php?
Does cors prevent csrf?