“Postgres Concat” Ответ

Строка конкатенация в PostgreSQL

-- with functions
CONCAT(first_name,' ', last_name) AS full_name;

-- with string concatenation operator
SELECT first_name || ' ' || last_name AS full_name FROM customer;

-- String concatenation with a non-string input
SELECT customer_id || ': ' || first_name || ' ' || last_name AS full_name
FROM customer;
Lux

Postgres Concat

update "ExportTables" SET "Name" = CONCAT("Name", '.csv') 
Powerful Puffin

Ответы похожие на “Postgres Concat”

Вопросы похожие на “Postgres Concat”

Больше похожих ответов на “Postgres Concat” по Sql

Смотреть популярные ответы по языку

Смотреть другие языки программирования