MySQL – Drop Database Table of content MySQL DROP Database Statement The DROP DATABASE statement in MySQL is used to delete a database along with all the data such as tables, views, indexes, stored procedures, and constraints. While deleting an existing database − It is important to make sure that we have to perform the […]
Author Archives: user
MySQL – Workbench Table of content The MySQL workbench is a graphical tool for working with MySQL servers and databases. It is developed and maintained by Oracle. This application includes various features such as data modelling, data migration, SQL development, server administration, database backup, database recovery and many more. MySQL Workbench supports the MySQL versions […]
MySQL – Select Database (USE Statement) Table of content Once you get connected with the MySQL server, it is required to select a database to work with. This is because there might be more than one database available with the MySQL Server. MySQL USE Statement To select a database in MySQL, we use the SQL […]