SQL USE Database
SQL USE Statement to use the database. Your have list of database. So whenever you work with database you must have to select (USE) on database at a time. and you can switch over any time using USE statement.
Syntax
USE database_name;
Example
SQL> USE user_db;
Database changed