Skip to content

Commit

Permalink
minor changes to adjust pagination
Browse files Browse the repository at this point in the history
  • Loading branch information
dwicinas committed Aug 26, 2024
1 parent 4e08992 commit 0987a9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "ENQUOTE_NAME"
---

The `ENQUOTE_NAME` procedure wraps quotation marks around a string, even if the input is already enclosed in quotataion marks. The string can include a quotation mark but output for the string puts quotation marks around the input quotation mark. By default output not included in quotation marks is converted to lower case, but setting a parameter to false means the case of input string is not converted.
The `ENQUOTE_NAME` procedure wraps quotation marks around a string, even if the input is already enclosed in quotataion marks. The string can include a quotation mark but output for the string puts quotation marks around the input quotation mark. By default output not included in quotation marks is converted to lower case, but setting a parameter to FALSE means no conversion is applied to the case of the input string.

The following table shows examples of how quotes are handled.

Expand All @@ -12,10 +12,7 @@ The following table shows examples of how quotes are handled.
| "abc" | TRUE | """abc""" |
| "a"bc" | TRUE | """a""bc""" |
| ABC | TRUE | "abc" |
| A


BC | FALSE | "ABC" |
| A<br/><br/>BC | FALSE | "ABC" |
| abc | TRUE | "abc" |
| abc | FALSE | "abc" |

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "QUALIFIED_SQL_NAME"
---

The `QUALIFIED_SQL_NAME` procedure determines whether the input string is a valid qualified SQL name.
The `QUALIFIED_SQL_NAME` procedure determines whether the input string is a valid SQL name.


```sql
Expand Down

0 comments on commit 0987a9e

Please sign in to comment.