What is MySQL and used ?
What is MySQL – MySQL is an open source relational database management system (RDBMS). SQL stands for Structured Query Language.
SQL is used to communicate with a database table.
MyISAM is the default database engine used in MySQL. There are five types of tables used in MySQLÂ Database –
MySQL Query Example –
SELECT * FROM tableName;
What is MySQL