REQUEST COMPLIMENTARY SQLS*PLUS LICENCE
PostgreSQL string functions
In PostgreSQL there are many different string functions designed for formatting, analyzing, and comparing strings.
These include both SQL92 standard functions and non-standard PostgreSQL extensions (such as Itrim(), rtrim() and substr()).
In PostgreSQL there are many different string functions
In general, everything that is said about the type of text equally applies to the values of character and varchar types.
Function | Description |
BTRIM | The PostgreSQL btrim function removes all specified characters both at the beginning and at the end of a line. |
CHAR_LENGTH | The char_length function in PostgreSQL returns the length of the specified string. |
CHARACTER_LENGTH | The character_length function in PostgreSQL returns the length of the specified string. |
INITCAP | The function initcap PostgreSQL converts the first letter of each word to upper case, and all other letters are converted to lower case. |
LENGTH | The length PostgreSQL function returns the length of the specified string, expressed in the number of characters. |
LOWER | The lower PostgreSQL function converts all characters of a specified string into a lower case. |
LPAD | The PostgreSQL lpad function returns a string added to the left side of the specified string of a certain length. |
LTRIM | The ltrim PostgreSQL function removes all specified characters on the left side of the line. |
POSTGRESQL operator || | PostgreSQL operator || allows combining 2 or more lines together. |
POSITION | The PostgreSQL position function returns the substring location in a string. |
REPEAT | The repeat PostgreSQL function repeats the string as many times as specified. |
REPLACE | The replace PostgreSQL function replaces all occurrences of the specified string. |
RPAD | The PostgreSQL rpad function returns a string added to the right side of the specified string of a certain length. |
RTRIM | The PostgreSQL rtrim function removes all specified characters on the right side of the line. |
STRPOS | The PostgreSQL strpos function returns the substring arrangement in a string. |
SUBSTRING | The substring PostgreSQL function allows extracting substring from a string. |
TRANSLATE | The translate PostgreSQL function replaces a sequence of characters in a string with another set of characters. However, it replaces one character at a time. For example, it replaces the first character in string_to_replace with the first character in replace_string. Then it will replace the second character in string_to_replace with the second character in replace_string, etc. |
TRIM | The trim PostgreSQL function removes all specified characters from the beginning or end of a line. |
UPPER | PostgreSQL function upper ctrreg converts all characters in the specified string into the upper case. |
Tutorial – String Functions
MORE NEWS
PreambleNoSql is not a replacement for SQL databases but is a valid alternative for many situations where standard SQL is not the best approach for...
PreambleMongoDB Conditional operators specify a condition to which the value of the document field shall correspond.Comparison Query Operators $eq...
5 Database management trends impacting database administrationIn the realm of database management systems, moreover half (52%) of your competitors feel...
The data type is defined as the type of data that any column or variable can store in MS SQL Server. What is the data type? When you create any table or...
PreambleMS SQL Server is a client-server architecture. MS SQL Server process starts with the client application sending a query.SQL Server accepts,...
First the basics: what is the master/slave?One database server (“master”) responds and can do anything. A lot of other database servers store copies of all...
PreambleAtom Hopper (based on Apache Abdera) for those who may not know is an open-source project sponsored by Rackspace. Today we will figure out how to...
PreambleMongoDB recently introduced its new aggregation structure. This structure provides a simpler solution for calculating aggregated values rather...
FlexibilityOne of the most advertised features of MongoDB is its flexibility. Flexibility, however, is a double-edged sword. More flexibility means more...
PreambleSQLShell is a cross-platform command-line tool for SQL, similar to psql for PostgreSQL or MySQL command-line tool for MySQL.Why use it?If you...
PreambleWriting an application on top of the framework on top of the driver on top of the database is a bit like a game on the phone: you say “insert...
PreambleOracle Coherence is a distributed cache that is functionally comparable with Memcached. In addition to the basic function of the API cache, it...
PreambleIBM pureXML, a proprietary XML database built on a relational mechanism (designed for puns) that offers both relational ( SQL / XML ) and...
What is PostgreSQL array? In PostgreSQL we can define a column as an array of valid data types. The data type can be built-in, custom or enumerated....
PreambleIf you are a Linux sysadmin or developer, there comes a time when you need to manage an Oracle database that can work in your environment.In this...
PreambleStarting with Microsoft SQL Server 2008, by default, the group of local administrators is no longer added to SQL Server administrators during the...