MySQL: SELECT DATABASE Statement

Profile picture for user arilio666

In MySQL we can select the database and say that we are gonna do operations on this and this database alone or we can manually hover and select the database if we use the workbench. To select a particular database and make it ready for action we use a simple query.

Syntax

use DatabaseName;

Using this we can couple it with our database name and select it meaning it is ready to perform operations over the table inside that database.

Tags