Account
Categories

MySQL USE command


When you want to use a specific database from the list of databases, you type 'USE database_name' after selecting it from the list of available databases.

Syntax:

USE database_name;

Example:

USE PersonDB;