Select a MySQL database to use

Contributor Icon Contributed by qmchenry  
Tag Icon Tagged: MySQL  

A single instance of MySQL can hold many separate databases. It is important to specify the database to which subsequent commands will be issued.


From within the mysql command (see Connect to a MySQL server using the mysql command for more information), the ‘use’ command selects the named database for use:

use financial

This command will select the database named ‘financial’ for use. Subsequent SQL commands will affect this database. The use command must be used on a separate line with no additional SQL commands.

 

1 Comment -


No comments yet.

RSS feed for comments on this post. TrackBack URL

Leave a comment -