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
How check submit button is clicked in php?
What is the use of imagetypes() method?
How is csrf token generated?
How does php work with apache?
Can we use include ("xyz.php") two times in a php page "index.php"?
What is php routing?
How can I find my php version?
Tell me how comfortable are you with writing html entirely by hand?
Explain about getters and setters in php?
What are php filters?
Can a super () and this () keywords be in same constructor?
How to close a session properly?
Tell me what does the scope of variables means?
What is the difference between Session and Cookie?
What is the use of Mbstring?