QUOTENAME_UDF (VARCHAR)

Important Notice: Migration of Documentation Website

Please be advised that our documentation website is currently undergoing a migration to a new platform. To ensure you have access to the most up-to-date information, we kindly request that you visit our new documentation website located at:

Official Snowflake Snowconvert Documentation

For any immediate assistance or if you encounter any issues, please contact our support team at [email protected].

Thank you for your understanding.

Definition

This user-defined function (UDF) creates a valid SQL Server delimited identifier by returning a Unicode string with the delimiters added.

QUOTENAME_UDF(STR VARCHAR) 

Parameters

STR VARCHAR

The string to be transformed.

Returns

Returns a varchar with the delimited identifier added.

Usage example

Input:

SELECT QUOTENAME_UDF('test');

Output:

"test"

Last updated