Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
bd6b6f40
Commit
bd6b6f40
authored
Jul 29, 1998
by
Thomas G. Lockhart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing information.
Fix examples for regex operators.
parent
32de56e8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
7 deletions
+19
-7
doc/src/sgml/func.sgml
doc/src/sgml/func.sgml
+14
-2
doc/src/sgml/oper.sgml
doc/src/sgml/oper.sgml
+5
-5
No files found.
doc/src/sgml/func.sgml
View file @
bd6b6f40
<Chapter>
<Chapter
Id="functions"
>
<Title>Functions</Title>
<Title>Functions</Title>
<Abstract>
<Abstract>
...
@@ -74,7 +74,7 @@ are implemented using other <ProductName>Postgres</ProductName> functions.
...
@@ -74,7 +74,7 @@ are implemented using other <ProductName>Postgres</ProductName> functions.
<Para>
<Para>
<TABLE TOCENTRY="1">
<TABLE TOCENTRY="1">
<TITLE><Acronym>SQL92</Acronym>
Text
Functions</TITLE>
<TITLE><Acronym>SQL92</Acronym>
String
Functions</TITLE>
<TGROUP COLS="4">
<TGROUP COLS="4">
<THEAD>
<THEAD>
<ROW>
<ROW>
...
@@ -139,6 +139,12 @@ Some are used internally to implement the SQL92 string functions listed above.
...
@@ -139,6 +139,12 @@ Some are used internally to implement the SQL92 string functions listed above.
<ENTRY> char(varchar 'varchar string') </ENTRY>
<ENTRY> char(varchar 'varchar string') </ENTRY>
</ROW>
</ROW>
<ROW>
<ROW>
<ENTRY> initcap(text) </ENTRY>
<ENTRY> text </ENTRY>
<ENTRY> first letter of each word to upper case </ENTRY>
<ENTRY> initcap('thomas') </ENTRY>
</ROW>
<ROW>
<ENTRY> lower(text) </ENTRY>
<ENTRY> lower(text) </ENTRY>
<ENTRY> text </ENTRY>
<ENTRY> text </ENTRY>
<ENTRY> convert text to lower case </ENTRY>
<ENTRY> convert text to lower case </ENTRY>
...
@@ -193,6 +199,12 @@ Some are used internally to implement the SQL92 string functions listed above.
...
@@ -193,6 +199,12 @@ Some are used internally to implement the SQL92 string functions listed above.
<ENTRY> text(varchar 'varchar string') </ENTRY>
<ENTRY> text(varchar 'varchar string') </ENTRY>
</ROW>
</ROW>
<ROW>
<ROW>
<ENTRY> translate(text,from,to) </ENTRY>
<ENTRY> text </ENTRY>
<ENTRY> convert character in string </ENTRY>
<ENTRY> translate('12345', '1', 'a') </ENTRY>
</ROW>
<ROW>
<ENTRY> varchar(char) </ENTRY>
<ENTRY> varchar(char) </ENTRY>
<ENTRY> varchar </ENTRY>
<ENTRY> varchar </ENTRY>
<ENTRY> convert char to varchar type </ENTRY>
<ENTRY> convert char to varchar type </ENTRY>
...
...
doc/src/sgml/oper.sgml
View file @
bd6b6f40
<Chapter>
<Chapter
Id="operators"
>
<Title>Operators</Title>
<Title>Operators</Title>
<Abstract>
<Abstract>
...
@@ -102,22 +102,22 @@ from numeric types to data/time types.
...
@@ -102,22 +102,22 @@ from numeric types to data/time types.
<ROW>
<ROW>
<ENTRY> ~ </ENTRY>
<ENTRY> ~ </ENTRY>
<ENTRY>Match (regex), case sensitive</ENTRY>
<ENTRY>Match (regex), case sensitive</ENTRY>
<ENTRY>'thomas' ~ '
*.thomas*.
'</ENTRY>
<ENTRY>'thomas' ~ '
.*thomas.*
'</ENTRY>
</ROW>
</ROW>
<ROW>
<ROW>
<ENTRY> ~* </ENTRY>
<ENTRY> ~* </ENTRY>
<ENTRY>Match (regex), case insensitive</ENTRY>
<ENTRY>Match (regex), case insensitive</ENTRY>
<ENTRY>'thomas' ~* '
*.Thomas*.
'</ENTRY>
<ENTRY>'thomas' ~* '
.*Thomas.*
'</ENTRY>
</ROW>
</ROW>
<ROW>
<ROW>
<ENTRY> !~ </ENTRY>
<ENTRY> !~ </ENTRY>
<ENTRY>Does not match (regex), case sensitive</ENTRY>
<ENTRY>Does not match (regex), case sensitive</ENTRY>
<ENTRY>'thomas' !~ '
*.Thomas*.
'</ENTRY>
<ENTRY>'thomas' !~ '
.*Thomas.*
'</ENTRY>
</ROW>
</ROW>
<ROW>
<ROW>
<ENTRY> !~* </ENTRY>
<ENTRY> !~* </ENTRY>
<ENTRY>Does not match (regex), case insensitive</ENTRY>
<ENTRY>Does not match (regex), case insensitive</ENTRY>
<ENTRY>'thomas' !~ '
*.vadim*.
'</ENTRY>
<ENTRY>'thomas' !~ '
.*vadim.*
'</ENTRY>
</ROW>
</ROW>
</TBODY>
</TBODY>
</TGROUP>
</TGROUP>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment