Training
Module
Create formulas that use tables, records, and collections in a canvas app in Power Apps - Training
Do you have need for complex formulas in your app? This module can help you write those formulas.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
concat
functionApplies to: Databricks SQL
Databricks Runtime
Returns the concatenation of the arguments. This function is a synonym for ||
(pipe pipe sign) operator.
concat(expr1, expr2 [, ...] )
exprN
: Expressions which are all STRING, all BINARY or all ARRAYs of STRING or BINARY.The result type matches the argument types.
There must be at least one argument.
> SELECT concat('Spark', 'SQL');
SparkSQL
> SELECT concat(array(1, 2, 3), array(4, 5), array(6));
[1,2,3,4,5,6]
Training
Module
Create formulas that use tables, records, and collections in a canvas app in Power Apps - Training
Do you have need for complex formulas in your app? This module can help you write those formulas.
Documentation
case expression - Azure Databricks - Databricks SQL
Learn the syntax of the case function of the SQL language in Databricks SQL and Databricks Runtime.
cast function - Azure Databricks - Databricks SQL
Learn the syntax of the cast function of the SQL language in Databricks SQL and Databricks Runtime.
replace function - Azure Databricks - Databricks SQL
Learn the syntax of the replace function of the SQL language in Databricks SQL and Databricks Runtime.