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 to register a variable in PHP session?
How to call javascript function in php without any event?
What is a substring in php?
How To Get the Uploaded File Information in the Receiving Script?
How to remove leading and trailing spaces from user input values in php?
What is the interface in php?
What is rest api in php?
What is the use of namespace in php?
Where is the submitted form data stored?
How to join multiple strings stored in an array into a single string?
What is the difference between php and javascript?
What is the use of the function htmlentities?
Is php case sensitive?
The left association operator % is used in PHP for?
What is alias in php?