Joining columns in a PostgreSQL SELECT statement
When concatenating character strings in a PostgreSQL SELECT statement, you may encounter errors if the columns are not explicitly converted to text.
Question:
There are two string columns a and b in table foo. Trying to join them using a || b or a || ', ' || b returns null or unexpected results.
Solution:
To properly concatenate strings in Postgres, at least one input must be converted to text. Here are two ways to do this:
- Convert a column to text:
SELECT a::text || b AS ab FROM foo;
- Use text separator:
SELECT a || ', ' || b AS ab FROM foo;
Note:
- Using the concatenation (||) operator between non-string data types is deprecated.
- For cases where null values may be involved and the result should not be null, use the concat_ws() function:
SELECT concat_ws(', ', a, b) AS ab FROM foo;
- Alternatively, you can use the concat() function for delimiter-free concatenation:
SELECT concat(a, b) AS ab FROM foo;
Additional notes:
-
-
The
- operator is not a valid string concatenation operator in Postgres.
- Using the character(n) data type to store strings is generally not recommended. Consider using text or varchar instead.
The above is the detailed content of How to Properly Concatenate Columns in PostgreSQL SELECT Statements?. For more information, please follow other related articles on the PHP Chinese website!

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version
SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 English version
Recommended: Win version, supports code prompts!
