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 / albert
There are basically two types of tablein MYSQL:
1. Transaction safe
2. Non transaction safe
/**
*Transaction safe consist of InnoDB, BDB
*Non transaction table includes ISAM, MYISAM, MERGE, HEAP
*/
Default type is MyISAM
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is the value for this auto incremented field user_pri_id?
Can we override magic methods in php?
Is it easy to learn php?
What is php artisan tinker?
How to write the form tag correctly for uploading files?
If we login more than one browser windows at the same time with same user and after that we close one window, then is the session is exist to other windows or not? And if yes then why? If no then why?
What is the use of explode() function?
How to delete a file from the system?
What are the rules for naming a php variable?
How many php functions are there?
When sessions ends?
How can you compare objects in php?
What does the unset() function mean?
What is static in php?
Is php open source?