Usposabljanje
sql_keywords
function
Applies to: Databricks SQL
Databricks Runtime 13.3 LTS and above
Returns the set of SQL keywords in Azure Databricks.
sql_keywords()
This function takes no arguments.
A set of rows composed of two columns:
keyword STRING NOT NULL
: The name of the SQL keywordreserved BOOLEAN NOT NULL
:true
if the keyword is reserved.
Keywords in Azure Databricks are only reserved under certain conditions. See ANSI compliance in Databricks Runtime for more details.
> SELECT keyword, reserved FROM sql_keywords() ORDER BY keyword LIMIT 2;
ACTION false
ADD false
Dodatni viri
Dokumentacija
-
nanvl function - Azure Databricks - Databricks SQL
Learn the syntax of the nanvl function of the SQL language in Databricks SQL and Databricks Runtime.
-
sentences function - Azure Databricks - Databricks SQL
Learn the syntax of the sentences function of the SQL language in Databricks SQL and Databricks Runtime.
-
transform_values function - Azure Databricks - Databricks SQL
Learn the syntax of the transform\_values function of the SQL language in Databricks SQL and Databricks Runtime.