⌘+k ctrl+k
1.1.3 (stable)
Search Shortcut cmd + k | ctrl + k
USE Statement

USE 语句选择一个数据库和可选的模式作为默认使用。

Examples

--- Sets the 'memory' database as the default
USE memory;
--- Sets the 'duck.main' database and schema as the default
USE duck.main;

Syntax

USE 语句设置了一个默认的数据库或数据库/模式组合,用于未来的操作。例如,如果没有提供完全限定的表名,创建的表将会在默认数据库中创建。