Skip to content
Advertisement

Postgres – sort and compare strings

I have the below table:

I want to concatenate all A strings and all B strings, sort them and compare the 2. This gives me the concatenation:

This is the output:

As seen, both of these strings are same if we sort them and compare. How can I do this in Postgres?

Here is the fiddle to try:

http://sqlfiddle.com/#!15/b78281/6

Advertisement

Answer

Would’ve been easier if you had an id column, but row_number() can be used. You can then union all all the A* columns into one A column, same with B*. Then you can concatenate using string_agg where you can choose how the words are to be sorted:

Fiddle

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement