Answer Posted / Ravi Prakash Mishra
MySQL supports several storage engines, each with its own set of features and performance characteristics. Some popular ones include:nn- MyISAM: a default storage engine that supports full-text search, table partitioning, and on-disk compression.nn- InnoDB: the most commonly used storage engine for ACID compliance, foreign key support, row-level locking, and transactions.nn- Memory: stores data entirely in memory for faster performance, but is lost when the server is restarted.nn- CSV: uses comma-separated values to store data efficiently, useful for importing/exporting large datasets.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers