Files
doris/new-docs/en/sql-manual/sql-reference-v2/Utility-Statements/USE.md
jiafeng.zhang 667eac9b7d Utility-Statements SQL Help (#8952)
Utility-Statements SQL Help
2022-04-12 08:44:16 +08:00

1.1 KiB

title, language
title language
USE en

USE

Name

USE

Description

The USE command allows us to use the database

grammar:

USE <DATABASE_NAME>

Example

  1. If the demo database exists, try accessing it:

    mysql> use demo;
    Database changed
    

Keywords

USE

Best Practice