Skip to content

Commit f524649

Browse files
authored
Merge pull request #897 from LarnuUK/patch-3
quotename-transact-sql.md - Acceptable single characters
2 parents a28ebb5 + 3df336b commit f524649

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/t-sql/functions/quotename-transact-sql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
title: "QUOTENAME (Transact-SQL) | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "03/14/2017"
@@ -45,7 +45,7 @@ QUOTENAME ( 'character_string' [ , 'quote_character' ] )
4545
Is a string of Unicode character data. *character_string* is **sysname** and is limited to 128 characters. Inputs greater than 128 characters return NULL.
4646

4747
'*quote_character*'
48-
Is a one-character string to use as the delimiter. Can be a single quotation mark ( **'** ), a left or right bracket ( **[]** ), or a double quotation mark ( **"** ). If *quote_character* is not specified, brackets are used.
48+
Is a one-character string to use as the delimiter. Can be a single quotation mark ( **'** ), a left or right bracket ( **[]** ), a double quotation mark ( **"** ), a left or right parenthesis ( **()** ), a greater than or less than sign ( **><** ), a left or right brace ( **{}** ) or a backtick ( **\`** ). NULL returns if an unacceptable character is supplied. If *quote_character* is not specified, brackets are used.
4949

5050
## Return Types
5151
**nvarchar(258)**

0 commit comments

Comments
 (0)