Postgresql – Why does dividing one string into 2 lines of strings work with `format()`?
On psql, I could call format() with 'Hello World' as shown below: postgres=# SELECT format('Hello World'); format ------------- Hello World (1 row) Now, dividing 'Hello World' into 'Hello ' and 'World' in one line with one space got the error…