Home
You may like this!

MySQL is a relational database management system (RDBMS), that runs as a server providing multi-user access to a number of databases.The official MySQL Workbench is a free integrated environment developed by MySQL AB, that enables users to graphically administer MySQL databases and visually design database structure.

Here are few Mysql interview questions

1.
How do you start and stop MySQL on Windows?
- net start MySQL, net stop MySQL
2.
How do you start MySQL on Linux?
- /etc/init.d/mysql start
3.
Explain the difference between mysql and mysqli interfaces in PHP?
- mysqli is the object-oriented version of mysql library functions.
4.
What’s the default port for MySQL Server?
- 3306
5.
What does tee command do in MySQL?
- tee followed by a filename turns on MySQL logging to a specified file. It can be stopped by command notee.