PostgreSQL字符串函数

开发 前端 PostgreSQL
PostgreSQL的字符串函数主要用于字符串操作。

PostgreSQL的字符串函数主要用于字符串操作。下表详细介绍了重要的字符串函数:

 

ASCII(str)

Returns the numeric value of the leftmost character of the string str. Returns 0 if str is the empty string. Returns NULL if str is NULL. ASCII() works for characters with numeric values from 0 to 255.

  1. testdb=# SELECT ASCII('2'); 
  2. +---------------------------------------------------------+ 
  3. | ASCII('2')                                              | 
  4. +---------------------------------------------------------+ 
  5. | 50                                                      | 
  6. +---------------------------------------------------------+ 
  7. 1 row in set (0.00 sec) 
  8.  
  9. testdb=# SELECT ASCII('dx'); 
  10. +---------------------------------------------------------+ 
  11. | ASCII('dx')                                             | 
  12. +---------------------------------------------------------+ 
  13. | 100                                                     | 
  14. +---------------------------------------------------------+ 
  15. 1 row in set (0.00 sec) 

BIT_LENGTH(str)

返回位字符串str的长度。

  1. testdb=# SELECT BIT_LENGTH('text'); 
  2. +---------------------------------------------------------+ 
  3. | BIT_LENGTH('text')                                      | 
  4. +---------------------------------------------------------+ 
  5. | 32                                                      | 
  6. +---------------------------------------------------------+ 
  7. 1 row in set (0.00 sec) 

 CHAR_LENGTH(str)

Returns the length of the string str, measured in characters. A multi-byte character counts as a single character. This means that for a string containing five two-byte characters, LENGTH() returns 10, whereas CHAR_LENGTH() returns 5。

  1. testdb=# SELECT CHAR_LENGTH('text'); 
  2. +---------------------------------------------------------+ 
  3. | CHAR_LENGTH('text')                                     | 
  4. +---------------------------------------------------------+ 
  5. | 4                                                       | 
  6. +---------------------------------------------------------+ 
  7. 1 row in set (0.00 sec) 

CHARACTER_LENGTH(str)

CHARACTER_LENGTH() is a synonym for CHAR_LENGTH()。

 CONCAT(str1,str2,...)

Returns the string that results from concatenating the arguments. May have one or more arguments. If all arguments are non-binary strings, the result is a non-binary string. If the arguments include any binary strings, the result is a binary string. A numeric argument is converted to its equivalent binary string form; if you want to avoid that, you can use an explicit type cast, as in this example:

  1. testdb=# SELECT CONCAT('My''S''QL'); 
  2. +---------------------------------------------------------+ 
  3. | CONCAT('My''S''QL')                                 | 
  4. +---------------------------------------------------------+ 
  5. | MySQL                                                   | 
  6. +---------------------------------------------------------+ 
  7. 1 row in set (0.00 sec) 

#p#

CONCAT_WS(separator,str1,str2,...)

CONCAT_WS() stands for Concatenate With Separator and is a special form of CONCAT(). The first argument is the separator for the rest of the arguments. The separator is added between the strings to be concatenated. The separator can be a string, as can the rest of the arguments. If the separator is NULL, the result is NULL。

  1. testdb=# SELECT CONCAT_WS(',','First name','Last Name' ); 
  2. +---------------------------------------------------------+ 
  3. | CONCAT_WS(',','First name','Last Name' )                | 
  4. +---------------------------------------------------------+ 
  5. First nameLast Name                                   | 
  6. +---------------------------------------------------------+ 
  7. 1 row in set (0.00 sec) 

 LCASE(str)

LCASE() is a synonym for LOWER()。

LEFT(str,len)

Returns the leftmost len characters from the string str, or NULL if any argument is NULL。

  1. testdb=# SELECT LEFT('foobarbar', 5); 
  2. +---------------------------------------------------------+ 
  3. LEFT('foobarbar', 5)                                    | 
  4. +---------------------------------------------------------+ 
  5. | fooba                                                   | 
  6. +---------------------------------------------------------+ 
  7. 1 row in set (0.00 sec) 

 LENGTH(str)

Returns the length of the string str, measured in bytes. A multi-byte character counts as multiple bytes. This means that for a string containing five two-byte characters, LENGTH() returns 10, whereas CHAR_LENGTH() returns 5。

  1. testdb=# SELECT LENGTH('text'); 
  2. +---------------------------------------------------------+ 
  3. | LENGTH('text')                                          | 
  4. +---------------------------------------------------------+ 
  5. | 4                                                       | 
  6. +---------------------------------------------------------+ 
  7. 1 row in set (0.00 sec) 

 LOWER(str)

Returns the string str with all characters changed to lowercase according to the current character set mapping.

  1. testdb=# SELECT LOWER('QUADRATICALLY'); 
  2. +---------------------------------------------------------+ 
  3. LOWER('QUADRATICALLY')                                  | 
  4. +---------------------------------------------------------+ 
  5. | quadratically                                           | 
  6. +---------------------------------------------------------+ 
  7. 1 row in set (0.00 sec) 

 LPAD(str,len,padstr)

Returns the string str, left-padded with the string padstr to a length of len characters. If str is longer than len, the return value is shortened to len characters.

  1. testdb=# SELECT LPAD('hi',4,'??'); 
  2. +---------------------------------------------------------+ 
  3. | LPAD('hi',4,'??')                                       | 
  4. +---------------------------------------------------------+ 
  5. | ??hi                                                    | 
  6. +---------------------------------------------------------+ 
  7. 1 row in set (0.00 sec) 

LTRIM(str)

Returns the string str with leading space characters removed.

  1. testdb=# SELECT LTRIM('  barbar'); 
  2. +---------------------------------------------------------+ 
  3. | LTRIM('  barbar')                                       | 
  4. +---------------------------------------------------------+ 
  5. | barbar                                                  | 
  6. +---------------------------------------------------------+ 
  7. 1 row in set (0.00 sec) 

MID(str,pos,len)

MID(str,pos,len) is a synonym for SUBSTRING(str,pos,len).

POSITION(substr IN str)

POSITION(substr IN str) is a synonym for LOCATE(substr,str).

QUOTE_IDENT(string text), QUOTE_LITERAL(string text), QUOTE_LITERAL(value anyelement), QUOTE_NULLABLE(value anyelement)

All these functions return the given string suitably quoted to be used as an identifier in an SQL statement string. In the function QUOTE_IDENT, Quotes are added only if necessary. In function QUOTE_LITERAL, embedded single-quotes and backslashes are properly doubled. If a value is passed, coerce the given value to text and then quote it as a literal. The function QUOTE_NULLABLE, coerces the given value to text and then quote it as a literal; or, if the argument is null, return NULL.

Following are the examples for all these functions:

  1. testdb=# SELECT QUOTE_IDENT('Foo bar'); 
  2.  quote_ident 
  3. ------------- 
  4.  "Foo bar" 
  5. (1 row) 
  6.  
  7.  
  8. testdb=# SELECT QUOTE_LITERAL(E'O\'Reilly'); 
  9.  quote_literal 
  10. --------------- 
  11.  'O''Reilly' 
  12. (1 row) 
  13.  
  14.  
  15. testdb=# SELECT QUOTE_LITERAL(42.5); 
  16.  quote_literal 
  17. --------------- 
  18.  '42.5' 
  19. (1 row) 
  20.  
  21.  
  22. testdb=# SELECT QUOTE_NULLABLE(42.5); 
  23.  quote_nullable 
  24. ---------------- 
  25.  '42.5' 
  26. (1 row) 

#p#

expr REGEXP pattern

REGEXP_MATCHES(string text, pattern text [, flags text]) function performs a pattern match of expr against pattern. Returns 1 if expr matches pat; otherwise it returns 0. If either expr or pat is NULL, the result is NULL. REGEXP_MATCHES is not case sensitive, except when used with binary strings.

REGEXP_REPLACE(string text, pattern text, replacement text [, flags text]) function replaces substring(s) matching a POSIX regular expression.

REGEXP_SPLIT_TO_ARRAY(string text, pattern text [, flags text ]), Split string using a POSIX regular expression as the delimiter.

REGEXP_SPLIT_TO_TABLE(string text, pattern text [, flags text]), splits string using a POSIX regular expression as the delimiter.

Following are the examples for all these functions:

  1. testdb=# SELECT REGEXP_MATCHES('ABCDEF' ,'A%C%%'); 
  2.  regexp_matches 
  3. ---------------- 
  4. (0 rows
  5.  
  6.  
  7. testdb=# SELECT REGEXP_REPLACE('Thomas''.[mN]a.''M'); 
  8.  regexp_replace 
  9. ---------------- 
  10.  ThM 
  11. (1 row) 
  12.  
  13.  
  14. testdb=# SELECT REGEXP_SPLIT_TO_ARRAY('hello world', E'\\s+'); 
  15.  regexp_split_to_array 
  16. ----------------------- 
  17.  {hello,world} 
  18. (1 row) 
  19.  
  20.  
  21. testdb=# SELECT REGEXP_SPLIT_TO_TABLE('hello world', E'\\s+'); 
  22.  regexp_split_to_table 
  23. ----------------------- 
  24.  hello 
  25.  world 
  26. (2 rows

 REPEAT(str,count)

Returns a string consisting of the string str repeated count times. If count is less than 1, returns an empty string. Returns NULL if str or count are NULL。

  1. testdb=# SELECT REPEAT('SQL', 3); 
  2.   repeat 
  3. ----------- 
  4.  SQLSQLSQL 
  5. (1 row) 

 REPLACE(str,from_str,to_str)

Returns the string str with all occurrences of the string from_str replaced by the string to_str. REPLACE() performs a case-sensitive match when searching for from_st

  1. testdb=# SELECT REPLACE('www.mysql.com''w''Ww'); 
  2.      replace 
  3. ------------------ 
  4.  WwWwWw.mysql.com 
  5. (1 row) 

 REVERSE(str)

Returns the string str with the order of the characters reversed.

  1. testdb=# SELECT REVERSE('abcd'); 
  2.  reverse 
  3. --------- 
  4.  dcba 
  5. (1 row) 

 RIGHT(str,len)

Returns the rightmost len characters from the string str, or NULL if any argument is NULL。

  1. testdb=# SELECT RIGHT('foobarbar', 4); 
  2.  right 
  3. ------- 
  4.  rbar 
  5. (1 row) 

 RPAD(str,len,padstr)

Returns the string str, right-padded with the string padstr to a length of len characters. If str is longer than len, the return value is shortened to len characters。

  1. testdb=# SELECT RPAD('hi',5,'?'); 
  2.  rpad 
  3. ------- 
  4.  hi??? 
  5. (1 row) 

 RTRIM(str)

Returns the string str with trailing space characters removed.

  1. testdb=# SELECT RTRIM('barbar   '); 
  2.  rtrim 
  3. -------- 
  4.  barbar 
  5. (1 row) 

#p# 

SUBSTRING(str,pos)

SUBSTRING(str FROM pos)

SUBSTRING(str,pos,len)

SUBSTRING(str FROM pos FOR len)

The forms without a len argument return a substring from string str starting at position pos. The forms with a len argument return a substring len characters long from string str, starting at position pos. The forms that use FROM are standard SQL syntax. It is also possible to use a negative value for pos. In this case, the beginning of the substring is pos characters from the end of the string, rather than the beginning. A negative value may be used for pos in any of the forms of this function。

  1. testdb=# SELECT SUBSTRING('Quadratically',5);  
  2.  substring  
  3. -----------  
  4.  ratically  
  5. (1 row)  
  6.   
  7.   
  8. testdb=# SELECT SUBSTRING('foobarbar' FROM 4);  
  9.  substring  
  10. -----------  
  11.  barbar  
  12. (1 row)  
  13.   
  14.   
  15. testdb=# SELECT SUBSTRING('Quadratically',5,6);  
  16.  substring  
  17. -----------  
  18.  ratica  
  19. (1 row)  

TRIM([{BOTH | LEADING | TRAILING} [remstr] FROM] str)

TRIM([remstr FROM] str)

Returns the string str with all remstr prefixes or suffixes removed. If none of the specifiers BOTH, LEADING, or TRAILING is given, BOTH is assumed. remstr

  1. testdb=# SELECT TRIM('  bar   '); 
  2.  btrim 
  3. ------- 
  4.  bar 
  5. (1 row) 
  6.  
  7.  
  8. testdb=# SELECT TRIM(LEADING 'x' FROM 'xxxbarxxx'); 
  9.  ltrim 
  10. -------- 
  11.  barxxx 
  12. (1 row) 
  13.  
  14.  
  15. testdb=# SELECT TRIM(BOTH 'x' FROM 'xxxbarxxx'); 
  16.  btrim 
  17. ------- 
  18.  bar 
  19. (1 row) 
  20.  
  21.  
  22. testdb=# SELECT TRIM(TRAILING 'xyz' FROM 'barxxyz'); 
  23.  rtrim 
  24. ------- 
  25.  bar 
  26. (1 row) 

UCASE(str)

UCASE() is a synonym for UPPER().

UPPER(str)

Returns the string str with all characters changed to uppercase according to the current character set mapping.

  1. testdb=# SELECT UPPER('manisha'); 
  2.   upper 
  3. --------- 
  4.  MANISHA 
  5. (1 row) 

 

原文链接:http://www.yiibai.com/html/postgresql/2013/080893.html

 

责任编辑:陈四芳 来源: yiibai.com
相关推荐

2010-10-09 11:54:46

MySQL字符串

2010-09-09 11:48:00

SQL函数字符串

2010-11-08 17:07:41

SQL Server字

2009-08-06 16:01:09

C#字符串函数大全

2010-11-26 10:14:40

MySQL repla

2010-07-14 16:35:52

Perl字符串处理函数

2009-11-24 09:55:44

PHP字符串函数

2009-11-18 12:38:04

PHP字符串函数

2010-11-26 11:34:32

MySQL截取字符串函

2011-07-15 11:07:41

C语言字符串函数

2009-12-01 10:38:08

PHP字符串函数

2010-07-19 15:07:46

Perl字符串处理函数

2011-07-15 12:41:53

C语言

2010-10-11 15:57:35

MySQL清除字符串

2009-02-24 15:39:27

字符串比较函数函数

2023-03-06 23:05:32

MySQL字符串函数

2010-05-26 15:36:23

MySQL字符串

2010-09-06 17:30:46

SQL函数

2010-11-26 09:46:26

MySQL字符串相加

2009-07-15 17:20:45

Jython字符串
点赞
收藏

51CTO技术栈公众号