Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
Applies to:
Databricks SQL
Databricks Runtime
Returns a formatted string from printf-style format strings.
The function exploits the java.util.Formatter class with Locale.US.
For details, see java.util.Formatter.
Syntax
format_string(strfmt [, obj1 [, ...] ])
Arguments
strfmt: ASTRINGexpression.objN:STRINGor numeric expressions.
Returns
A STRING.
Examples
> SELECT format_string('Hello World %d %s', 100, 'days');
Hello World 100 days