Explain MySQL architecture?
Answer / amith
The front layer takes care of network connections and
security authentications, the middle layer does the SQL
query parsing, and then the query is handled off to the
storage engine.
A storage engine could be either a default one supplied
with MySQL (MyISAM) or a commercial one supplied by a third-
party vendor (ScaleDB, InnoDB, etc.)
Is This Answer Correct ? | 18 Yes | 3 No |
How to create table show example
How do I rename a table in mysql?
What is the difference between primary and unique key
How do you flush privileges?
Explain what is mysql?
What command is used to delete the data from the table without deleting the table structure?
If we create a column with data type VARCHAR(3), what would we expect to see in MySQL table?
Create table employee (eno int(2),ename varchar(10)) ?
What is sqlyog?
How do you convert to a different table type?
How to see the database architecture in MySQL??
What is a heap table?