1) InnoDB
2) MyISAM.
The difference b/w the above two is, former supports the subquery, constraints etc... but the later won't support those. This causes the MyISAM tables relatively faster during retrieval when compared to InnoDB. But the problem is the constraint check and subquery are not applicable in it.
Related to performance engineering.
How to find the total rows processed when executing an query and other infrmation.
use, explain query
(i.e) explain select * from table.
Related to mysql dump
How to see the create table script of an existing table ?
use, show create table < table_name >
Related to process
How to find the process id executing in mysql when you run a query? (i.e) Executing an query from the java client will create a process in background.
use, show processlist
No comments:
Post a Comment