+ 1
How to select a database from homepage?
Hello, I want to know the sql command to select a database from phpMyAdmin homepage. i know it can be done by clicking the name but, I am curious about the command (if exists). Thanks!
1 Antwort
+ 3
You can switch to using another database by issuing a USE command;
USE <database_name>
Hth, cmiiw