SHOW statement to find out what databases currently exist on the server.
mysql> SHOW DATABASES;
mysql database describes user access privileges.
test database is a workspace for users to try things out.
USE command.
USE does not require a semicolon.
USE must be executed on one line.
mysql> USE test
How do I create a database?
© 2007 John Michael Pierobon