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

How to create an array in php?

545


What is polymorphism in oop php?

504


How a constant is defined in a php script?

562


What is a composer in PHP?

539


Is a number php?

524






Is wordpress a php framework?

517


What does $this do in php?

522


How to initiate a session in php?

652


What is varchar mysql?

576


What is magic quotes?

600


What does $globals mean?

522


What is sorting php?

513


What is the use of count() function in php?

526


What is $_ request?

519


What are some new features introduced in php7?

8372