Definition: The use command is used when you have more than one database on a MySQL server and need to switch between them. It is phrased as: use [DatabaseName];
Examples: This would switch to the database named 'Dresses':
use Dresses;

