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 / sailesh jaiswal (lamp institut

MySQL supports 2 types of tables.
1. Transaction Safe Table (TST)
2. Non-Transaction Safe Table (NTST)

1. Transaction Safe Table: This type is safer compared to
NTST. Here transactions are temporary. We have ROLLBACK &
COMMIT commands available. Supports Foreign Key, Locking.
Used for More WRITES & Less READS.
Storage engines INNODB, BDB creates TSTs

2. NTST: Here transactions are permanent. No COMMIT, No
ROLLBACK. Partial Support for Foreign Key, Locking. Used for
More READS & Less WRITE.
Storage engines MyISAM, HEAP creates NTSTs.

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is php regular expression?

510


Explain what is the difference between session and cookie?

545


What is a class in php programing?

2012


How can a cross-site scripting attack be prevented by php?

542


Why is php used for web development?

509






Why php is also called as scripting language?

553


How can we automatically escape incoming data?

541


What is faster in php?

587


Tell me what is mean by an associative array?

527


How does session work in php?

538


How many types of arrays are there in php?

541


Does php has a future?

499


What does the array operator '===' means?

562


Is c similar to php?

494


What is csrf token in php?

554