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.

MySQL Query Example –
SELECT * FROM tableName;
What is MySQL