Can you change a row in PostgresSQL?

I am interested in flipping a line in PostgreSQL.

+3
source share
2 answers

PostgreSQL 9.1 and later include a built-in function.

 reverse(text)

http://www.postgresql.org/docs/current/static/functions-string.html

+4
source

Here you have the function of reversing strings for PostreSQL:

http://a-kretschmer.de/diverses.shtml

+2
source

Source: https://habr.com/ru/post/1764260/


All Articles