Back to Spark

USE Database

docs/sql-ref-syntax-ddl-usedb.md

4.1.1907 B
Original Source

Description

USE statement is used to set the current database. After the current database is set, the unqualified database artifacts such as tables, functions and views that are referenced by SQLs are resolved from the current database. The default database name is 'default'.

Syntax

sql
USE database_name

Parameter

  • database_name

    Name of the database will be used. If the database does not exist, an exception will be thrown.

Examples

sql
-- Use the 'userdb' which exists.
USE userdb;

-- Use the 'userdb1' which doesn't exist
USE userdb1;
Error: org.apache.spark.sql.catalyst.analysis.NoSuchDatabaseException: Database 'userdb1' not found;
(state=,code=0)