SQL โ Select Database
To Select database for work use the following syntax :
Syntax for SQL โ Select Database
USE Keyword is used to select the database.
USE DatabaseName;
Example
USE CustomersDb;
You are now switched to database cusetomersdb.
Now you can perform actions like select , create table etc.
Advertisements
Add Comment
๐ Read More
- 1. SQL - CREATE TABLE
- 2. SQL - INSERT
- 3. SQL - SELECT
- 4. SQL - WHERE Clause
- 5. SQL - AND & OR
- 6. SQL ORDER BY
- 7. SQL - UPDATE
- 8. SQL - DELETE
- 9. SQL - Like
- 10. SQL In Operator