1、邏輯操做符:
經常使用的邏輯操做符有:AND、OR和NOT。其語義與其它編程語言中的邏輯操做符徹底相同。
2、比較操做符:
下面是PostgreSQL中提供的比較操做符列表:
正則表達式
操做符 | 描述 |
< | 小於 |
> | 大於 |
<= | 小於或等於 |
>= | 大於或等於 |
= | 等於 |
!= | 不等於 |
比較操做符能夠用於全部能夠比較的數據類型。全部比較操做符都是雙目操做符,且返回boolean類型。除了比較操做符之外,咱們還可使用BETWEEN語句,如:
a BETWEEN x AND y 等效於 a >= x AND a <= y
a NOT BETWEEN x AND y 等效於 a < x OR a > y
3、 數學函數和操做符:
下面是PostgreSQL中提供的數學操做符列表: 編程
操做符 | 描述 | 例子 | 結果 |
+ | 加 | 2 + 3 | 5 |
- | 減 | 2 - 3 | -1 |
* | 乘 | 2 * 3 | 6 |
/ | 除 | 4 / 2 | 2 |
% | 模 | 5 % 4 | 1 |
^ | 冪 | 2.0 ^ 3.0 | 8 |
|/ | 平方根 | |/ 25.0 | 5 |
||/ | 立方根 | ||/ 27.0 | 3 |
! | 階乘 | 5 ! | 120 |
!! | 階乘 | !! 5 | 120 |
@ | 絕對值 | @ -5.0 | 5 |
& | 按位AND | 91 & 15 | 11 |
| | 按位OR | 32 | 3 | 35 |
# | 按位XOR | 17 # 5 | 20 |
~ | 按位NOT | ~1 | -2 |
<< | 按位左移 | 1 << 4 | 16 |
>> | 按位右移 | 8 >> 2 | 2 |
按位操做符只能用於整數類型,而其它的操做符能夠用於所有數值數據類型。按位操做符還能夠用於位串類型bit和bit varying, dom
下面是PostgreSQL中提供的數學函數列表,須要說明的是,這些函數中有許多都存在多種形式,區別只是參數類型不一樣。除非特別指明,任何特定形式的函數都返回和它的參數相同的數據類型。 編程語言
函數 | 返回類型 |
描述 | 例子 |
結果 |
abs(x) | 絕對值 | abs(-17.4) | 17.4 | |
cbrt(double) | 立方根 | cbrt(27.0) | 3 | |
ceil(double/numeric) | 不小於參數的最小的整數 | ceil(-42.8) | -42 | |
degrees(double) |
把弧度轉爲角度 | degrees(0.5) | 28.6478897565412 | |
exp(double/numeric) | 天然指數 | exp(1.0) | 2.71828182845905 | |
floor(double/numeric) | 不大於參數的最大整數 | floor(-42.8) | -43 | |
ln(double/numeric) | 天然對數 | ln(2.0) | 0.693147180559945 | |
log(double/numeric) | 10爲底的對數 | log(100.0) | 2 | |
log(b numeric,x numeric) | numeric指定底數的對數 | log(2.0, 64.0) | 6.0000000000 | |
mod(y, x) | 取餘數 | mod(9,4) | 1 | |
pi() |
double | "π"常量 | pi() |
3.14159265358979 |
power(a double, b double) | double | 求a的b次冪 | power(9.0, 3.0) | 729 |
power(a numeric, b numeric) | numeric | 求a的b次冪 | power(9.0, 3.0) | 729 |
radians(double) | double | 把角度轉爲弧度 | radians(45.0) | 0.785398163397448 |
random() | double | 0.0到1.0之間的隨機數值 | random() | |
round(double/numeric) | 圓整爲最接近的整數 | round(42.4) | 42 | |
round(v numeric, s int) | numeric | 圓整爲s位小數數字 | round(42.438,2) | 42.44 |
sign(double/numeric) | 參數的符號(-1,0,+1) |
sign(-8.4) | -1 | |
sqrt(double/numeric) | 平方根 | sqrt(2.0) | 1.4142135623731 | |
trunc(double/numeric) | 截斷(向零靠近) | trunc(42.8) | 42 | |
trunc(v numeric, s int) | numeric | 截斷爲s小數位置的數字 | trunc(42.438,2) | 42.43 |
三角函數列表: 函數
函數 | 描述 |
acos(x) | 反餘弦 |
asin(x) | 反正弦 |
atan(x) | 反正切 |
atan2(x, y) | 正切 y/x 的反函數 |
cos(x) | 餘弦 |
cot(x) | 餘切 |
sin(x) | 正弦 |
tan(x) | 正切 |
4、字符串函數和操做符:
下面是PostgreSQL中提供的字符串操做符列表: 編碼
函數 | 返回類型 | 描述 | 例子 | 結果 |
string || string | text | 字串鏈接 | 'Post' || 'greSQL' | PostgreSQL |
bit_length(string) | int | 字串裏二進制位的個數 | bit_length('jose') | 32 |
char_length(string) | int | 字串中的字符個數 | char_length('jose') | 4 |
convert(string using conversion_name) | text | 使用指定的轉換名字改變編碼。 | convert('PostgreSQL' using iso_8859_1_to_utf8) | 'PostgreSQL' |
lower(string) | text | 把字串轉化爲小寫 | lower('TOM') | tom |
octet_length(string) | int | 字串中的字節數 | octet_length('jose') | 4 |
overlay(string placing string from int [for int]) | text | 替換子字串 | overlay('Txxxxas' placing 'hom' from 2 for 4) | Thomas |
position(substring in string) | int | 指定的子字串的位置 | position('om' in 'Thomas') | 3 |
substring(string [from int] [for int]) | text | 抽取子字串 | substring('Thomas' from 2 for 3) | hom |
substring(string from pattern) | text | 抽取匹配 POSIX 正則表達式的子字串 | substring('Thomas' from '...$') | mas |
substring(string from pattern for escape) | text | 抽取匹配SQL正則表達式的子字串 | substring('Thomas' from '%#"o_a#"_' for '#') | oma |
trim([leading | trailing | both] [characters] from string) | text | 從字串string的開頭/結尾/兩邊/ 刪除只包含characters(缺省是一個空白)的最長的字串 | trim(both 'x' from 'xTomxx') | Tom |
upper(string) | text | 把字串轉化爲大寫。 | upper('tom') | TOM |
ascii(text) | int | 參數第一個字符的ASCII碼 | ascii('x') | 120 |
btrim(string text [, characters text]) | text | 從string開頭和結尾刪除只包含在characters裏(缺省是空白)的字符的最長字串 | btrim('xyxtrimyyx','xy') | trim |
chr(int) | text | 給出ASCII碼的字符 | chr(65) | A |
convert(string text, [src_encoding name,] dest_encoding name) | text | 把字串轉換爲dest_encoding | convert( 'text_in_utf8', 'UTF8', 'LATIN1') | 以ISO 8859-1編碼表示的text_in_utf8 |
initcap(text) | text | 把每一個單詞的第一個子母轉爲大寫,其它的保留小寫。單詞是一系列字母數字組成的字符,用非字母數字分隔。 | initcap('hi thomas') | Hi Thomas |
length(string text) | int | string中字符的數目 | length('jose') | 4 |
lpad(string text, length int [, fill text]) | text | 經過填充字符fill(缺省時爲空白),把string填充爲長度length。 若是string已經比length長則將其截斷(在右邊)。 | lpad('hi', 5, 'xy') | xyxhi |
ltrim(string text [, characters text]) | text | 從字串string的開頭刪除只包含characters(缺省是一個空白)的最長的字串。 | ltrim('zzzytrim','xyz') | trim |
md5(string text) | text | 計算給出string的MD5散列,以十六進制返回結果。 | md5('abc') | |
repeat(string text, number int) | text | 重複string number次。 | repeat('Pg', 4) | PgPgPgPg |
replace(string text, from text, to text) | text | 把字串string裏出現地全部子字串from替換成子字串to。 | replace('abcdefabcdef', 'cd', 'XX') | abXXefabXXef |
rpad(string text, length int [, fill text]) | text | 經過填充字符fill(缺省時爲空白),把string填充爲長度length。若是string已經比length長則將其截斷。 | rpad('hi', 5, 'xy') | hixyx |
rtrim(string text [, character text]) | text | 從字串string的結尾刪除只包含character(缺省是個空白)的最長的字 | rtrim('trimxxxx','x') | trim |
split_part(string text, delimiter text, field int) | text | 根據delimiter分隔string返回生成的第field個子字串(1 Base)。 | split_part('abc~@~def~@~ghi', '~@~ ', 2) | def |
strpos(string, substring) | text | 聲明的子字串的位置。 | strpos('high','ig') | 2 |
substr(string, from [, count]) | text | 抽取子字串。 | substr('alphabet', 3, 2) | ph |
to_ascii(text [, encoding]) | text | 把text從其它編碼轉換爲ASCII。 | to_ascii('Karel') | Karel |
to_hex(number int/bigint) | text | 把number轉換成其對應地十六進制表現形式。 | to_hex(9223372036854775807) | 7fffffffffffffff |
translate(string text, from text, to text) | text | 把在string中包含的任何匹配from中的字符的字符轉化爲對應的在to中的字符。 | translate('12345', '14', 'ax') | a23x5 |
5、位串函數和操做符:
對於類型bit和bit varying,除了經常使用的比較操做符以外,還可使用如下列表中由PostgreSQL提供的位串函數和操做符,其中&、|和#的位串操做數必須等長。在移位的時候,保留原始的位串的的長度。 spa
操做符 | 描述 | 例子 | 結果 |
|| | 鏈接 | B'10001' || B'011' | 10001011 |
& | 按位AND | B'10001' & B'01101' | 00001 |
| | 按位OR | B'10001' | B'01101' | 11101 |
# | 按位XOR | B'10001' # B'01101' | 11100 |
~ | 按位NOT | ~ B'10001' | 01110 |
<< | 按位左移 | B'10001' << 3 | 01000 |
>> | 按位右移 | B'10001' >> 2 | 00100 |
除了以上列表中說起的操做符以外,位串還可使用字符串函數:length, bit_length, octet_length, position, substring。此外,咱們還能夠在整數和bit之間來回轉換,如:
MyTest=# SELECT 44::bit(10);
bit
------------
0000101100
(1 row)
MyTest=# SELECT 44::bit(3);
bit
-----
100
(1 row)
MyTest=# SELECT cast(-44 as bit(12));
bit
--------------
111111010100
(1 row)
MyTest=# SELECT '1110'::bit(4)::integer;
int4
------
14
(1 row)
注意:若是隻是轉換爲"bit",意思是轉換成bit(1),所以只會轉換成整數的最低位。 .net
該博客中提供的全部信息均源自PostgreSQL官方文檔,編寫該篇博客的主要目的是便於從此的查閱,特此聲明。 md5