search
HomeDatabaseMysql Tutorialpostgresql中常用小语法
postgresql中常用小语法Jun 07, 2016 pm 02:58 PM
postgresqlCommonly usedgrammar

postgresql中常用小语法 1. PG中 类型转换 有时候在postgresql中需要对值的类型进行转换,pg中提供的方法 example : select 33:: integer example2: select case(33 as integer) 2. pg中的行号 (类似于oracle中的 rownum) example : select row_number() o

postgresql中常用小语法

 

1. PG中 类型转换

 

    有时候在postgresql中需要对值的类型进行转换,pg中提供的方法

 

 example :  select '33':: integer

 

 example2: select case('33' as integer)

 

2. pg中的行号 (类似于oracle中的 rownum)

 

  example : select row_number() over() , * from XXXX

 

3. pg 中查询中的列转数组

 

example :  select array_agg(AAAAA)  FROM XXXXX

 

4. pg 中字符串函数 :

 

函数:string || string 

说明:String concatenation 字符串连接操作

例子:'Post' || 'greSQL' = PostgreSQL

 

函数:string || non-string or non-string || string

说明:String concatenation with one non-string input 字符串与非字符串类型进行连接操作

例子:'Value: ' || 42 = Value: 42

 

函数:bit_length(string)

说明:Number of bits in string 计算字符串的位数

例子:bit_length('jose') = 32

 

函数:char_length(string) or character_length(string)

说明:Number of characters in string 计算字符串中字符个数

例子:char_length('jose') = 4

 

函数:lower(string)

说明:Convert string to lower case 转换字符串为小写

例子:bit_length('jose') = 32

 

函数:octet_length(string)

说明:Number of bytes in string 计算字符串的字节数

例子:octet_length('jose') = 4

 

函数:overlay(string placing string from int [for int])

说明:Replace substring 替换字符串中任意长度的子字串为新字符串

例子:overlay('Txxxxas' placing 'hom' from 2 for 4) = 4

 

函数:position(substring in string)

说明:Location of specified substring 子串在一字符串中的位置

例子:position('om' in 'Thomas') = 3

 

函数:substring(string [from int] [for int])

说明:Extract substring 截取任意长度的子字符串

例子:substring('Thomas' from 2 for 3) = hom

 

函数:substring(string from pattern)

说明:Extract substring matching POSIX regular expression. See Section 9.7 for more information on pattern matching. 利用正则表达式对一字符串进行任意长度的字串的截取

例子:substring('Thomas' from '...$') = mas

 

函数:substring(string from pattern for escape)

说明:Extract substring matching SQL regular expression. See Section 9.7 for more information on pattern matching. 利于正则表达式对某类字符进行删除,以得到子字符串

例子:trim(both 'x' from 'xTomxx') = Tom

 

函数:trim([leading | trailing | both] [characters] from string)

说明:Remove the longest string containing only the characters (a space by default) from the start/end/both ends of the string 去除尽可能长开始,结束或者两边的某类字符,默认为去除空白字符,当然可以自己指定,可同时指定多个要删除的字符串

例子:trim(both 'x' from 'xTomxx') = Tom

 

函数:upper(string)

说明:Convert string to uppercase 将字符串转换为大写

例子:upper('tom') = TOM

 

函数:ascii(string)

说明:ASCII code of the first character of the argument. For UTF8 returns the Unicode code point of the character. For other multibyte encodings. the argument must be a strictly ASCII character. 得到某一个字符的Assii值

例子:ascii('x') = 120

 

函数:btrim(string text [, characters text])

说明:Remove the longest string consisting only of characters in characters (a space by default) from the start and end of string 去除字符串两边的所有指定的字符,可同时指定多个字符

例子:btrim('xyxtrimyyx', 'xy') = trim

 

 

函数:chr(int)

说明:Character with the given code. For UTF8 the argument is treated as a Unicode code point. For other multibyte encodings the argument must designate a strictly ASCII character. The NULL (0) character is not allowed because text data types cannot store such bytes. 得到某ACSII值对应的字符

例子:chr(65) = A

 

 

函数:convert(string bytea, src_encoding name, dest_encoding name)

说明:Convert string to dest_encoding. The original encoding is specified by src_encoding. The string must be valid in this encoding. Conversions can be defined by CREATE CONVERSION. Also there are some predefined conversions. See Table 9-7 for available conversions. 转换字符串编码,指定源编码与目标编码

例子:convert('text_in_utf8', 'UTF8', 'LATIN1') = text_in_utf8 represented in ISO 8859-1 encoding

 

 

函数:convert_from(string bytea, src_encoding name)

说明:Convert string to the database encoding. The original encoding is specified by src_encoding. The string must be valid in this encoding. 转换字符串编码,自己要指定源编码,目标编码默认为数据库指定编码,

例子:convert_from('text_in_utf8', 'UTF8') = text_in_utf8 represented in the current database encoding

 

 

函数:convert_to(string text, dest_encoding name)

说明:Convert string to dest_encoding.转换字符串编码,源编码默认为数据库指定编码,自己要指定目标编码,

例子:convert_to('some text', 'UTF8') = some text represented in the UTF8 encoding

 

 

函数:decode(string text, type text)

说明:Decode binary data from string previously encoded with encode. Parameter type is same as in encode. 对字符串按指定的类型进行解码

例子:decode('MTIzAAE=', 'base64') = 123\000\001

 

 

函数:encode(data bytea, type text)

说明:Encode binary data to different representation. Supported types are: base64, hex, escape. Escape merely outputs null bytes as \000 and doubles backslashes. 与decode相反,对字符串按指定类型进行编码

例子:encode(E'123\\000\\001', 'base64') = MTIzAAE=

 

 

函数:initcap(string)

说明:Convert the first letter of each word to uppercase and the rest to lowercase. Words are sequences of alphanumeric characters separated by non-alphanumeric characters. 将字符串所有的单词进行格式化,首字母大写,其它为小写

例子:initcap('hi THOMAS') = Hi Thomas

 

 

函数:length(string)

说明:Number of characters in string 讲算字符串长度

例子:length('jose') = 4

 

 

函数:length(stringbytea, encoding name )

说明:Number of characters in string in the given encoding. The string must be valid in this encoding. 计算字符串长度,指定字符串使用的编码

例子:length('jose', 'UTF8') = 4

 

 

函数:lpad(string text, length int [, fill text])

说明:Fill up the string to length length by prepending the characters fill (a space by default). If the string is already longer than length then it is truncated (on the right). 对字符串左边进行某类字符自动填充,即不足某一长度,则在左边自动补上指定的字符串,直至达到指定长度,可同时指定多个自动填充的字符

例子:lpad('hi', 5, 'xy') = xyxhi

 

 

函数:ltrim(string text [, characters text])

说明:Remove the longest string containing only characters from characters (a space by default) from the start of string 删除字符串左边某一些的字符,可以时指定多个要删除的字符

例子:trim

 

 

函数:md5(string)

说明:Calculates the MD5 hash of string, returning the result in hexadecimal 将字符串进行md5编码

例子:md5('abc') = 900150983cd24fb0 d6963f7d28e17f72

 

 

函数:pg_client_encoding()

说明:Current client encoding name 得到pg客户端编码

例子:pg_client_encoding() = SQL_ASCII

 

 

函数:quote_ident(string text)

说明:Return the given string suitably quoted to be used as an identifier in an SQL statement string. Quotes are added only if necessary (i.e., if the string contains non-identifier characters or would be case-folded). Embedded quotes are properly doubled. 对某一字符串加上两引号

例子:quote_ident('Foo bar') = "Foo bar"

 

 

函数:quote_literal(string text)

说明:Return the given string suitably quoted to be used as a string literal in an SQL statement string. Embedded single-quotes and backslashes are properly doubled. 对字符串里两边加上单引号,如果字符串里面出现sql编码的单个单引号,则会被表达成两个单引号

例子:quote_literal('O\'Reilly') = 'O''Reilly'

 

 

函数:quote_literal(value anyelement)

说明:Coerce the given value to text and then quote it as a literal. Embedded single-quotes and backslashes are properly doubled. 将一数值转换为字符串,并为其两边加上单引号,如果数值中间出现了单引号,也会被表示成两个单引号

例子:quote_literal(42.5) = '42.5'

 

 

函数:regexp_matches(string text, pattern text [, flags text])

说明:Return all captured substrings resulting from matching a POSIX regular expression against the string. See Section 9.7.3 for more information. 对字符串按正则表达式进行匹配,如果存在则会在结果数组中表示出来

例子:regexp_matches('foobarbequebaz', '(bar)(beque)') = {bar,beque}

 

 

函数:regexp_replace(string text, pattern text, replacement text [, flags text])

说明:Replace substring(s) matching a POSIX regular expression. See Section 9.7.3 for more information. 利用正则表达式对字符串进行替换

例子:regexp_replace('Thomas', '.[mN]a.', 'M') = ThM

 

 

函数:regexp_split_to_array(string text, pattern text [, flags text ])

说明:Split string using a POSIX regular expression as the delimiter. See Section 9.7.3 for more information. 利用正则表达式将字符串分割成数组

例子:regexp_split_to_array('hello world', E'\\s+') = {hello,world}

 

 

函数:regexp_split_to_table(string text, pattern text [, flags text])

说明:Split string using a POSIX regular expression as the delimiter. See Section 9.7.3 for more information. 利用正则表达式将字符串分割成表格

例子:regexp_split_to_table('hello world', E'\\s+') =

hello

world

(2 rows)

 

 

函数:repeat(string text, number int)

说明:Repeat string the specified number of times 重复字符串一指定次数

例子:repeat('Pg', 4) = PgPgPgPg

 

 

函数:replace(string text, from text, to text)

说明:Replace all occurrences in string of substring from with substring to 将字符的某一子串替换成另一子串

例子:('abcdefabcdef', 'cd', 'XX') = abXXefabXXef

 

 

函数:rpad(string text, length int [, fill text])

说明:Fill up the string to length length by appending the characters fill (a space by default). If the string is already longer than length then it is truncated. 对字符串进行填充,填充内容为指定的字符串

例子:rpad('hi', 5, 'xy') = hixyx

 

 

函数:rtrim(string text [, characters text])

说明:Remove the longest string containing only characters from characters (a space by default) from the end of string

去除字符串右边指定的字符

例子:rtrim('trimxxxx', 'x') = trim

 

 

函数:split_part(string text, delimiter text, field int)

说明:Split string on delimiter and return the given field (counting from one)  对字符串按指定子串进行分割,并返回指定的数值位置的值

例子:split_part(mailto:'abc~@~def~@~ghi', mailto:'~@~', 2) = def

 

函数:strpos(string, substring)

说明:Location of specified substring (same as position(substring in string), but note the reversed argument order) 指定字符串在目标字符串的位置

例子:strpos('high', 'ig') = 2

 

函数:substr(string, from [, count])

说明:Extract substring (same as substring(string from from for count)) 截取子串

例子:substr('alphabet', 3, 2) = ph

 

函数:to_ascii(string text [, encoding text])

说明:Convert string to ASCII from another encoding (only supports conversion from LATIN1, LATIN2, LATIN9, and WIN1250 encodings) 将字符串转换成ascii编码字符串

例子:to_ascii('Karel') = Karel

 

函数:to_hex(number int or bigint)

说明:Convert number to its equivalent hexadecimal representation  对数值进行十六进制编码

例子:to_hex(2147483647) = 7fffffff

 

函数:translate(string text, from text, to text)

说明:Any character in string that matches a character in the from set is replaced by the corresponding character in the to set 将字符串中某些匹配的字符替换成指定字符串,目标字符与源字符都可以同时指定多个

例子:translate('12345', '14', 'ax') = a23x5

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
MySQL和PostgreSQL:在Web开发中的最佳实践MySQL和PostgreSQL:在Web开发中的最佳实践Jul 14, 2023 pm 02:34 PM

MySQL和PostgreSQL:在Web开发中的最佳实践引言:在现代的Web开发领域中,数据库是必不可少的组成部分。在选择数据库时,常见的选择是MySQL和PostgreSQL。本文将介绍在Web开发中使用MySQL和PostgreSQL的最佳实践,并提供一些代码示例。一、适用场景MySQL适用于大多数Web应用程序,特别是那些需要高性能、可扩展性和易于使

MySQL和PostgreSQL:性能对比与优化技巧MySQL和PostgreSQL:性能对比与优化技巧Jul 13, 2023 pm 03:33 PM

MySQL和PostgreSQL:性能对比与优化技巧在开发web应用程序时,数据库是不可或缺的组成部分。而在选择数据库管理系统时,MySQL和PostgreSQL是两个常见的选择。他们都是开源的关系型数据库管理系统(RDBMS),但在性能和优化方面有一些不同之处。本文将比较MySQL和PostgreSQL的性能,并提供一些优化技巧。性能对比在比较两个数据库管

MySQL和PostgreSQL:数据安全与备份策略MySQL和PostgreSQL:数据安全与备份策略Jul 13, 2023 pm 03:31 PM

MySQL和PostgreSQL:数据安全与备份策略引言:在现代社会中,数据成为了企业和个人生活中不可或缺的一部分。对于数据库管理系统来说,数据安全与备份策略是至关重要的,既能保护数据免受丢失或损坏,也能确保恢复数据的可靠性和完整性。本文将重点讨论MySQL和PostgreSQL两种主流关系型数据库系统的数据安全性和备份策略。一、数据安全性方面:(一)用户权

学习Go语言中的数据库函数并实现PostgreSQL数据的增删改查操作学习Go语言中的数据库函数并实现PostgreSQL数据的增删改查操作Jul 31, 2023 pm 12:54 PM

学习Go语言中的数据库函数并实现PostgreSQL数据的增删改查操作在现代的软件开发中,数据库是不可或缺的一部分。Go语言作为一门强大的编程语言,提供了丰富的数据库操作函数和工具包,可以轻松地实现数据库的增删改查操作。本文将介绍如何学习Go语言中的数据库函数,并使用PostgreSQL数据库进行实际的操作。第一步:安装数据库驱动程序在Go语言中,每个数据库

如何在PHP编程中使用PostgreSQL数据库?如何在PHP编程中使用PostgreSQL数据库?Jun 12, 2023 am 09:27 AM

随着数据库技术的发展,数据库管理系统也呈现出多种多样的选择,开发人员可以根据自己的需求和喜好选择最适合自己的数据库。而PostgreSQL作为一种先进的开源关系型数据库系统,越来越受到开发人员的关注和使用。那么,在PHP编程中如何使用PostgreSQL数据库呢?一、安装和配置PostgreSQL数据库在使用PostgreSQL之前,需要先安装和配置它。首先

在Go语言中使用PostgreSQL:完整指南在Go语言中使用PostgreSQL:完整指南Jun 18, 2023 am 09:28 AM

Go语言是一种快速、高效的编程语言,适合构建Web服务和后端应用程序。而PostgreSQL是一个开源的关系型数据库管理系统,承诺提供更高的可靠性、可扩展性和数据安全性。在本文中,我们将深入探讨如何在Go语言中使用PostgreSQL,并提供一些实用的代码示例和技巧。安装和设置PostgreSQL首先,我们需要安装和设置PostgreSQL。可以在官方网

PHP实现开源PostgreSQL关系型数据库PHP实现开源PostgreSQL关系型数据库Jun 18, 2023 am 08:40 AM

随着互联网的发展,数据量持续增长,数据管理的需求变得日益迫切。关系型数据库是数据管理的一种重要方式,而其中的PostgreSQL因其灵活性、可扩展性及安全性而备受欢迎。本文介绍了如何利用PHP语言实现一个开源的PostgreSQL关系型数据库,希望对有相应需求的开发者有所帮助。概述PostgreSQL是一种强大的关系型数据库系统,它是遵循SQL标准的且具有许

MySQL和PostgreSQL:如何优化数据库查询性能?MySQL和PostgreSQL:如何优化数据库查询性能?Jul 12, 2023 pm 03:15 PM

MySQL和PostgreSQL:如何优化数据库查询性能?概述:在开发应用程序时,数据库查询性能是一个重要的考虑因素。良好的查询性能可以提高应用程序的响应速度和用户体验。本文将介绍一些优化数据库查询性能的方法,重点涵盖MySQL和PostgreSQL两种常用数据库。数据库索引的优化:数据库索引是提高查询性能的重要因素。索引可以加快数据的查找速度,减少查询时扫

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.