hetu-core/hetu-docs/zh/sql/use.md

20 lines
250 B
Markdown

# USE
## 摘要
``` sql
USE catalog.schema
USE schema
```
## 说明
更新会话以使用指定的目录和模式。如果未指定目录,则相对于当前目录解析模式。
## 示例
``` sql
USE hive.finance;
USE information_schema;
```