
- SQL - Home
- SQL - Roadmap
- SQL - Overview
- SQL - RDBMS Concepts
- SQL - Databases
- SQL - Syntax
- SQL - Data Types
- SQL - Operators
- SQL - Expressions
- SQL - Comments
- SQL Database
- SQL - Create Database
- SQL - Drop Database
- SQL - Select Database
- SQL - Rename Database
- SQL - Show Databases
- SQL - Backup Database
- SQL Table
- SQL - Create Table
- SQL - Show Tables
- SQL - Rename Table
- SQL - Truncate Table
- SQL - Clone Tables
- SQL - Temporary Tables
- SQL - Alter Tables
- SQL - Drop Table
- SQL - Delete Table
- SQL - Constraints
- SQL Queries
- SQL - Insert Query
- SQL - Select Query
- SQL - Select Into
- SQL - Insert Into Select
- SQL - Update Query
- SQL - Delete Query
- SQL - Sorting Results
- SQL Views
- SQL - Create Views
- SQL - Update Views
- SQL - Drop Views
- SQL - Rename Views
- SQL Operators and Clauses
- SQL - Where Clause
- SQL - Top Clause
- SQL - Distinct Clause
- SQL - Order By Clause
- SQL - Group By Clause
- SQL - Having Clause
- SQL - AND & OR
- SQL - BOOLEAN (BIT) Operator
- SQL - LIKE Operator
- SQL - IN Operator
- SQL - ANY, ALL Operators
- SQL - EXISTS Operator
- SQL - CASE
- SQL - NOT Operator
- SQL - NOT EQUAL
- SQL - IS NULL
- SQL - IS NOT NULL
- SQL - NOT NULL
- SQL - BETWEEN Operator
- SQL - UNION Operator
- SQL - UNION vs UNION ALL
- SQL - INTERSECT Operator
- SQL - EXCEPT Operator
- SQL - Aliases
- SQL Joins
- SQL - Using Joins
- SQL - Inner Join
- SQL - Left Join
- SQL - Right Join
- SQL - Cross Join
- SQL - Full Join
- SQL - Self Join
- SQL - Delete Join
- SQL - Update Join
- SQL - Left Join vs Right Join
- SQL - Union vs Join
- SQL Keys
- SQL - Unique Key
- SQL - Primary Key
- SQL - Foreign Key
- SQL - Composite Key
- SQL - Alternate Key
- SQL Indexes
- SQL - Indexes
- SQL - Create Index
- SQL - Drop Index
- SQL - Show Indexes
- SQL - Unique Index
- SQL - Clustered Index
- SQL - Non-Clustered Index
- Advanced SQL
- SQL - Wildcards
- SQL - Injection
- SQL - Hosting
- SQL - Min & Max
- SQL - Null Functions
- SQL - Check Constraint
- SQL - Default Constraint
- SQL - Stored Procedures
- SQL - NULL Values
- SQL - Transactions
- SQL - Sub Queries
- SQL - Handling Duplicates
- SQL - Using Sequences
- SQL - Auto Increment
- SQL - Date & Time
- SQL - Cursors
- SQL - Common Table Expression
- SQL - Group By vs Order By
- SQL - IN vs EXISTS
- SQL - Database Tuning
- SQL Function Reference
- SQL - Date Functions
- SQL - String Functions
- SQL - Aggregate Functions
- SQL - Numeric Functions
- SQL - Text & Image Functions
- SQL - Statistical Functions
- SQL - Logical Functions
- SQL - Cursor Functions
- SQL - JSON Functions
- SQL - Conversion Functions
- SQL - Datatype Functions
- SQL Useful Resources
- SQL - Questions and Answers
- SQL - Cheatsheet
- SQL - Quick Guide
- SQL - Useful Functions
- SQL - Useful Resources
- SQL - Discussion
SQL - QUOTENAME() Function
The SQL QUOTENAME() function is used to retrieve a Unicode string with delimiters. It accepts two parameters char_str, and quote_char, and returns a string with a delimiter added, in order to make the String a valid SQL delimiter identifier.
A delimiter is a sequence of one or more characters specifying the boundary between separate, independent regions in the plain text, character strings, words, or any other data items. The character string limit is 128 characters, and if, its length is greater than 128 characters, it returns a NULL value.
Note − The default delimiter is left([) and right(]) brackets.
Syntax
Following is the syntax of the SQL QUOTENAME() function −
QUOTENAME(char_string, quote_character)
Parameters
char_string − It is a string of Unicode character data.
quote_character − It is a single-character string to use as the delimiter.
Return value
This function returns a Unicode string with the delimiters.
Example
In the following example,we are using the SQL QUOTENAME() function to retrieve a Unicode string with the delimiters of the current characters string âtutorials[]pointâ.
SELECT QUOTENAME('tutorials[]point') AS UNICODE_STRING;
Output
On executing the above program, it will produce the following output −
+-----------------------+ | UNICODE_STRING | +-----------------------+ | [tutorials[]]point] | +-----------------------+
Example
Following is another example of the SQL QUOTENAME() function. In this example, we are trying to retrieve the Unicode string with a delimiter of the current characters string âhello worldâ, which initially does not contain any delimiter.
SELECT QUOTENAME('hello world') AS UNICODE_STRING;
Output
The above SQL query generates the following output −
+------------------+ | UNICODE_STRING | +------------------+ | [hello world] | +------------------+
Example
If we pass the argument quote_char(custom delimiter) value to the QUOTENAME() function, this function returns the Unicode string with a specified delimiter.
In the following example,we are using the SQL QUOTENAME() function to retrieve the Unicode string with the specified delimiter â{}â of the current character string âTutorials Pointâ.
SELECT QUOTENAME('Tutorials Point', '{}') AS UNICODE_STRING;
Output
Following is the output of the above query −
+----------------------------+ | UNICODE_STRING | +----------------------------+ | {Tutorials Point} | +----------------------------+
Example
You can also pass the table column as an argument to the SQL QUOTENAME() function to get the Unicode string with the specified delimiter. Assume we have created a table with the name Customers using the CREATE statement as follows −
CREATE TABLE CUSTOMERS( ID INT NOT NULL, NAME VARCHAR (20) NOT NULL, AGE INT NOT NULL, ADDRESS CHAR (25) , SALARY DECIMAL (18, 2));
Now, let's insert some records into the Customers table using the INSERT statement as follows −
INSERT INTO CUSTOMERS (ID,NAME,AGE,ADDRESS,SALARY) VALUES (1, 'Ramesh', 32, 'Ahmedabad', 2000.00 ); INSERT INTO CUSTOMERS (ID,NAME,AGE,ADDRESS,SALARY) VALUES (2, 'Khilan', 25, 'Delhi', 1500.00 ); INSERT INTO CUSTOMERS (ID,NAME,AGE,ADDRESS,SALARY) VALUES (3, 'kaushik', 23, 'Kota', 2000.00 ); INSERT INTO CUSTOMERS (ID,NAME,AGE,ADDRESS,SALARY) VALUES (4, 'Chaitali', 25, 'Mumbai', 6500.00 );
The following SQL query retrieves the Unicode string value with the specified delimiter â()â of the column Name in the Customers table −
SELECT ID, NAME, QUOTENAME(NAME, '()') AS UNICODE_STRING FROM CUSTOMERS;
Output
Following is the output of the above query −
+----+----------+----------------+ | ID | NAME | UNICODE_STRING | +----+----------+----------------+ | 1 | Ramesh | (Ramesh) | | 2 | Khilan | (Khilan) | | 3 | kaushik | (kaushik) | | 4 | Chaitali | (Chaitali) | +----+----------+----------------+