Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commite67e399

Browse files
committed
Add man page for oracle compatibility functions
By Edmund
1 parente2ab435 commite67e399

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

‎src/man/oracle_compat.3

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
.\" This is -*-nroff-*-
2+
.\" XXX standard disclaimer belongs here....
3+
.\" $Id: oracle_compat.3,v 1.1 1997/03/07 00:47:41 scrappy Exp $
4+
.TH ORACLE_COMPAT SQL 03/06/97 PostgreSQL PostgreSQL
5+
.SH DESCRIPTION
6+
This is a set of single row character functions, defined for the datatype
7+
text. They are supposed to behave exactly as their Oracle counterparts.
8+
.PP
9+
The following functions have been implemented:
10+
.PP
11+
.BLOWER(string)
12+
.IP
13+
Returns string, with all letters forced to lowercase.
14+
.PP
15+
.BUPPER(string)
16+
.IP
17+
Returns string, with all letters forced to uppercase.
18+
.PP
19+
.BINITCAP(string)
20+
.IP
21+
Returns string, with first letter of each word in uppercase,
22+
all other letters in lowercase. A word is delimited by white
23+
space.
24+
.PP
25+
.BLPAD(string1,len[,string2])
26+
.IP
27+
Returns string1, left-padded to length len with the sequence
28+
of characters in string2. string2 defaults to blanks.
29+
.PP
30+
.BRPAD(string1,len[,string2])
31+
.IP
32+
Returns string1, right-padded to length len with the sequence
33+
of characters in string2. string2 defaults to blanks.
34+
.PP
35+
.BLTRIM(string[,set])
36+
.IP
37+
Returns string with initial characters removed up to the first
38+
character not in set. set defaults to blanks.
39+
.PP
40+
.BRTRIM(string[,set])
41+
.IP
42+
Returns string with final characters removed after the last
43+
character not in set. set defaults to blanks.
44+
.PP
45+
.BSUBSTR(string,m[,n])
46+
.IP
47+
Returns a portion of string, beginning at character m, n
48+
characters long. If n is omitted, to the end of the string.
49+
The first position of string is 1.
50+
.PP
51+
.BTRANSLATE(string,from,to)
52+
.IP
53+
Returns string after replacing all occurences of from with
54+
the corresponding character in to. TRANSLATE will not remove
55+
characters.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp