USE SCHEMA
Dotyczy: Databricks SQL Databricks Runtime 10.4 LTS i nowsze
Ustawia bieżący schema. Po schema bieżącej setniekwalifikowane odwołania do obiektów, takich jak tables, funkcje i views, do których odwołuje się sqLs, są rozpoznawane z bieżącej schema.
Domyślna nazwa schema to default
.
Chociaż użycie SCHEMA
elementów i DATABASE
jest wymienne, SCHEMA
jest preferowane.
Składnia
USE [SCHEMA] schema_name
Parametr
-
Nazwa schema do użycia. schema musi istnieć w bieżącym catalog lub zgłaszany jest wyjątek SCHEMA_NOT_FOUND.
Przykłady
-- Use the 'userschema' which exists.
> USE SCHEMA userschema;
-- Use the 'userschema1' which doesn't exist
> USE SCHEMA userschema1;
Error: Database 'userschema1' not found;
-- Setting the catalog resets the schema to `default`
> USE CATALOG some_cat;
> SELECT current_catalog(), current_schema();
some_cat default
-- Setting the schema within the current catalog
> USE SCHEMA some_schem;
> SELECT current_catalog(), current_schema();
some_cat some_schema
-- Resetting both catalog and schema
> USE CATALOG main;
> USE SCHEMA my_schema;
> SELECT current_catalog(), current_schema();
main my_schema
-- Setting the catalog resets the schema to `default` again
> USE CATALOG some_cat;
> SELECT current_catalog(), current_schema();
some_cat default