הערה
גישה לעמוד זה דורשת אישור. אתה יכול לנסות להיכנס או לשנות תיקיות.
גישה לעמוד זה דורשת אישור. אתה יכול לנסות לשנות מדריכים.
Applies to:
Databricks SQL
Databricks Runtime
Returns a string consisting of n spaces.
Syntax
space(n)
Arguments
n: AnINTEGERexpression that evaluates to a numeric.
Returns
A STRING.
If n is less than or equal to 0 an empty string.
Examples
> SELECT concat('1', space(2), '1');
1 1