How to make a database as current working database?
Before start working on a database, you need to select that database and need to make the current working database using the SQL statement, USE with the following syntax
Syntax
USE databasename;
Example
USE demodb;
Comments
Post a Comment