postgresql concat string with separator

Solutions on MaxInterview for postgresql concat string with separator by the best coders in the world

showing results for - "postgresql concat string with separator"
Manuela
06 Sep 2019
1SELECT
2	concat_ws (', ', last_name, first_name) AS full_name
3FROM
4	customer
5ORDER BY
6	last_name;Code language: SQL (Structured Query Language) (sql)