Custom Search
Web CMS Drupal ConfigurationWeb Page, CMS Technology and Drupal Related Configuration Article |
|
Custom Search
TopicsPopular contentToday's:
|
Select and working with MySQL database.![]() ![]()  Sometimes you have lot of database on your MySQL server, this list of database could be so many, but you just need to work with one of these database. This article show step by step to select and start working with the database. 1. Login and connect to you MySQL database:  # mysql -u root -p
2. List all MySQL database available on the server:  mysql> SHOW DATABASE;
3.. Choose the database that you want to work with: Â mysql> USE mysql-database-name;
»
Custom Search
|